-
Notifications
You must be signed in to change notification settings - Fork 117
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Parallel build fails on OSX #27
Comments
A similar problem happens on Linux, too. This happens on Ubuntu, but I have also reproduced it on Gentoo both through an ebuild and on the command line just calling make directly. The actual failure is in one of a variety of places, not surprising with a concurrency problem. Sometimes the problem doesn't happen. When it does happen, I've noticed it happening most often from ld, something like:
or:
but others were seen too, such as:
|
There’s indeed some weird concurrency problem. When I build it with defaults inside an Alpine Linux package, then it returns non-zero status on the last line of this snippet:
If I specify |
From [email protected] on May 28, 2013 14:25:48
What steps will reproduce the problem? 'make -j 4' on a dual-core MacBook Pro What is the expected output? What do you see instead? Expect:
All tests were successful.
Instead see:
cc -dynamiclib -framework System -install_name /usr/lib/libpacparser.1.dylib -o libpacparser.1.dylib pacparser.o libjs.a -lm
ld: malformed archive TOC entry for _printVal, offset 2032640 is beyond end of file 1318912 for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation) What version of the product are you using? On what operating system? pacparser version 1.3.1
Mac OSX version 10.6.8 Please provide any additional information below. Different errors show up with different levels of parallelism
Original issue: http://code.google.com/p/pacparser/issues/detail?id=27
The text was updated successfully, but these errors were encountered: