Closed
Bug 976896
Opened 11 years ago
Closed 11 years ago
Port STL_FLAGS to moz.build
Categories
(Firefox Build System :: General, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
mozilla30
People
(Reporter: ehsan.akhgari, Assigned: ehsan.akhgari)
References
Details
Attachments
(1 file, 1 obsolete file)
77.23 KB,
patch
|
mshal
:
review+
|
Details | Diff | Splinter Review |
For the most part, we use this flag to disable STL wrapping. There are a couple of places (memory/mozalloc/Makefile.in and dom/plugins/ipc/hangui/Makefile.in) where this is abused to set CXXFLAGS. I'm planning to add a moz.build variable called DISABLE_STL_WRAPPING, and have it emit |STL_FLAGS := | when it's set to True, and convert those abuse cases to CXXFLAGS.
Does that sound good?
Flags: needinfo?(mshal)
Flags: needinfo?(mh+mozilla)
Flags: needinfo?(gps)
Assignee | ||
Updated•11 years ago
|
Blocks: xulinmozbuild
Comment 1•11 years ago
|
||
As long as you also properly set DISABLE_STL_WRAPPING if STL_FLAGS were replaced by a new value, and ensure the ordering doesn't matter for those flags STL_FLAGS was abused for.
Flags: needinfo?(mshal)
Flags: needinfo?(mh+mozilla)
Flags: needinfo?(gps)
Assignee | ||
Comment 2•11 years ago
|
||
(In reply to comment #1)
> As long as you also properly set DISABLE_STL_WRAPPING if STL_FLAGS were
> replaced by a new value, and ensure the ordering doesn't matter for those flags
> STL_FLAGS was abused for.
The ordering shouldn't matter since they're just -D commands.
Is there a way to just disallow STL_FLAGS in Makefile.in so that I don't have to set DISABLE_STL_WRAPPING if STL_FLAGS is replaced by a new value?
Assignee | ||
Updated•11 years ago
|
Flags: needinfo?(mh+mozilla)
Comment 3•11 years ago
|
||
Replace $(STL_FLAGS) in COMPILE_CXXFLAGS with $(if $(DISABLE_STL_WRAPPING),,$(STL_FLAGS)), and just make the backend produce DISABLE_STL_WRAPPING?
Flags: needinfo?(mh+mozilla)
Assignee | ||
Comment 4•11 years ago
|
||
(In reply to comment #3)
> Replace $(STL_FLAGS) in COMPILE_CXXFLAGS with $(if
> $(DISABLE_STL_WRAPPING),,$(STL_FLAGS)), and just make the backend produce
> DISABLE_STL_WRAPPING?
OK, sounds good!
Assignee | ||
Comment 5•11 years ago
|
||
Assignee | ||
Updated•11 years ago
|
Attachment #8384166 -
Flags: review?(mshal)
Attachment #8384166 -
Flags: review?(mh+mozilla)
Attachment #8384166 -
Flags: review?(gps)
Assignee | ||
Comment 6•11 years ago
|
||
Assignee | ||
Updated•11 years ago
|
Attachment #8384166 -
Attachment is obsolete: true
Attachment #8384166 -
Flags: review?(mshal)
Attachment #8384166 -
Flags: review?(mh+mozilla)
Attachment #8384166 -
Flags: review?(gps)
Assignee | ||
Updated•11 years ago
|
Attachment #8384346 -
Flags: review?(mshal)
Attachment #8384346 -
Flags: review?(mh+mozilla)
Attachment #8384346 -
Flags: review?(gps)
Comment 7•11 years ago
|
||
Comment on attachment 8384346 [details] [diff] [review]
Port STL_FLAGS to moz.build
>diff --git a/memory/build/replace_malloc.h b/memory/build/replace_malloc.h
>index 371e824..c98e2c8 100644
>--- a/memory/build/replace_malloc.h
>+++ b/memory/build/replace_malloc.h
>@@ -49,17 +49,18 @@
> * Building a replace-malloc library is like rocket science. It can end up
> * with things blowing up, especially when trying to use complex types, and
> * even more especially when these types come from XPCOM or other parts of the
> * Mozilla codebase.
> * It is recommended to add the following to a replace-malloc implementation's
> * Makefile.in:
> * MOZ_GLUE_LDFLAGS = # Don't link against mozglue
> * WRAP_LDFLAGS = # Never wrap malloc function calls with -Wl,--wrap
>- * STL_FLAGS = # Avoid STL wrapping
>+ * and the following to the implemetation's moz.build:
implemetation -> implementation
Attachment #8384346 -
Flags: review?(mshal)
Attachment #8384346 -
Flags: review?(mh+mozilla)
Attachment #8384346 -
Flags: review?(gps)
Attachment #8384346 -
Flags: review+
Assignee | ||
Comment 8•11 years ago
|
||
Comment 9•11 years ago
|
||
Status: NEW → RESOLVED
Closed: 11 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla30
Updated•7 years ago
|
Product: Core → Firefox Build System
You need to log in
before you can comment on or make changes to this bug.
Description
•