Closed
Bug 535897
Opened 15 years ago
Closed 14 years ago
Building libxul builds on Mac takes forever
Categories
(Firefox Build System :: General, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: bzbarsky, Assigned: glandium)
References
Details
(Whiteboard: fixed-in-bs)
I just compared the time it takes to make in layout/build (just layout/build, nothing else) after touching a single file in layout/base and making in layout/base in libxul and non-libxul debug builds on mac. The non-libxul one takes about a minute over here. The libxul one takes 8 minutes.
General time breakdown seems to be:
* rm of libgklayout.a is fast.
* rm of all the .o files takes about 4 seconds.
* ar x of every single .a around 1.5 minutes.
* ar cr to create libgklayout.a takes about 4 minutes.
* ranlib on libgklayout.a takes about 2.5 minutes.
* rm of all the .o files again takes about 6 seconds.
I just checked, and unfortunately doing:
ar x ../base/libgkbase_s.a
ar d libgklayout.a *.o
takes about 2.5 minutes for the second step. :( It seems to run ranlib on the archive in the process of removing the files, for one thing. Then doing:
ar q libgklayout.a *.o
takes a long time too.
Tossing in the S option, however, makes things faster (maybe one minute for the 'd', almost immediate 'q'). Is it worth possibly looking into using the combination of dS, qS, ranlib to speed this up, maybe? Or something to make this sane? 8-minute layout link times, followed by libxul link, are just _painful_.
Comment 1•15 years ago
|
||
Finishing bug 522770 would probably make this better. Instead of producing static libs, it just produces text files with the names of the object files in them, then passes them to the linker with @filename, which both VC++ and GCC read the contents of and treat as if they were passed on the command line.
How about we just switch to "tar cf" and "tar x" instead of ar?
Comment 3•14 years ago
|
||
It's a little tricky because we do produce a few static libs in the tree that we actually want to ship as static libs in stuff like the SDK. I have a working patch in bug 522770, it's just stuck in bsmedberg review limbo. (That patch doesn't stop us from making real static libs, but we could do that as a pretty easy followup.)
Yeah, not making real static libs would be a big io win. But your patch in bug 522770 has no review requests on it?
Comment 5•14 years ago
|
||
Oh, bah!
Depends on: 584471
No longer depends on: 522770
Blocks: require-libxul
Comment 6•14 years ago
|
||
bug 584474 is fixed on the build-system branch, that should have resolved these issues. If you feel like cloning yet another branch to try it out, it's here:
http://hg.mozilla.org/projects/build-system
Reporter | ||
Comment 7•14 years ago
|
||
I tried that branch. Takes the incremental build time (for a manual build in the relevant dir, layout/build, and toolkit/library) for a minor change to content/layout code from about 130 seconds to about 10 seconds on my hardware. I can live with that!
Reporter | ||
Comment 8•14 years ago
|
||
That was on Mac, of course.
Woot! Nice job Mike!
Whiteboard: fixed-in-bs
Fixed by Bug 584474.
Status: NEW → RESOLVED
Closed: 14 years ago
Resolution: --- → FIXED
Updated•14 years ago
|
Assignee: nobody → mh+mozilla
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
•