Closed
Bug 513353
Opened 12 years ago
Closed 12 years ago
use gcc-4.2 by default for Mac OS X trunk
Categories
(Firefox Build System :: General, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
mozilla1.9.3a1
People
(Reporter: smichaud, Assigned: jaas)
References
Details
Attachments
(1 file, 2 obsolete files)
2.36 KB,
patch
|
ted
:
review+
|
Details | Diff | Splinter Review |
Using gcc 4.2 on OS X provides performance gains over using gcc 4.0 (the system default). If we decide to use it in preference to gcc 4.0, we should patch the build system to use it by default (where appropriate and available). I'll post a preliminary patch in my next comment.
Reporter | ||
Comment 1•12 years ago
|
||
I'm not too familiar with configure.in and friends, so I'm not sure I've done this the right way. Since my additions to the "Check for MacOS deployment target version" block can change $CXX_VERSION (used by the "Mac OS X toolchain support" block), I switched the order of those two blocks. I can't foresee any harm in doing so. I tried to make sure that my new code doesn't override user-specified values for $CC or $CXX. This patch can't be landed until bug 510920 is fixed -- with it, the build process currently fails building Breakpad.
Attachment #397352 -
Flags: review?(ted.mielczarek)
Comment 2•12 years ago
|
||
I commented in bug 501436 comment 22 to note that the nightly/release builds use the universal mozconfig, which explicitly sets the GCC version and SDK.
Reporter | ||
Comment 3•12 years ago
|
||
Many of us just build for the current "platform" -- if it's just for our own use, we don't usually do universal builds (which take twice as long). We could (indeed we should) provide a recommended mozconfig for use when MACOSX_DEPLOYMENT_TARGET >= 10.5, which also explicitly sets the gcc version and SDK. But I still think it makes sense to make gcc 4.2 the default (where appropriate) -- unless the mozconfig overrides this. In any case, we can't land this patch (or test it fully) until bug 510920 is fixed. And I now realize that if I want to make gcc-4.2 the default throughout the tree, there are a couple of additional configure.in files that I need to alter (in nsprpub and js/src).
Updated•12 years ago
|
Assignee: nobody → smichaud
Updated•12 years ago
|
Attachment #397352 -
Flags: review?(ted.mielczarek) → review-
Comment 4•12 years ago
|
||
Comment on attachment 397352 [details] [diff] [review] Preliminary patch Let's not worry about NSPR, they're not likely to want to drop 10.4 support there anyway. We will need the same fixes in js/src/configure.in, however. Given bug 501436, I don't think we need to bother with checking the macos-target value. We're changing the minimum supported value to 10.5, so let's just set CC/CXX to gcc 4.2 when building on Mac (and not explicitly specifying CC/CXX). + AC_SUBST(CC) + AC_SUBST(CXX) Pretty sure you don't need these.
Attachment #401833 -
Flags: review?(ted.mielczarek)
Comment 6•12 years ago
|
||
Comment on attachment 401833 [details] [diff] [review] fix v1.0 Looking more closely, I don't think this is the right place to set these. We check CC/CXX_VERSION way up here: http://mxr.mozilla.org/mozilla-central/source/configure.in#424 You probably want to throw a Darwin even further up here: http://mxr.mozilla.org/mozilla-central/source/configure.in#187 and parallel what we're doing in that Win32 block (only set CC=gcc4.2 if it's unset, so people can still override it.)
Attachment #401833 -
Flags: review?(ted.mielczarek) → review-
Nice catch Ted, thanks.
Attachment #397352 -
Attachment is obsolete: true
Attachment #401833 -
Attachment is obsolete: true
Attachment #403096 -
Flags: review?(ted.mielczarek)
Updated•12 years ago
|
Attachment #403096 -
Flags: review?(ted.mielczarek) → review+
Hardware: x86 → All
Summary: Use gcc 4.2 when MACOSX_DEPLOYMENT_TARGET >= 10.5 on OS X → use gcc-4.2 by default for Mac OS X trunk
pushed to mozilla-central http://hg.mozilla.org/mozilla-central/rev/5ba664496037
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Updated•11 years ago
|
Flags: in-testsuite-
Target Milestone: --- → mozilla1.9.3a1
Updated•3 years ago
|
Product: Core → Firefox Build System
You need to log in
before you can comment on or make changes to this bug.
Description
•