-
Notifications
You must be signed in to change notification settings - Fork 429
parallel make fails with mkdir: ./obj: File exists #134
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
Comments
👍 Adding |
Can we please not use @ to hide the build commands? It makes it really difficult to understand what's going on when the build fails, which is the only time you're going to be paying attention anyway. |
The latest development branch, develop-500 now only uses cmake... |
develop-500: The build works for me on Mac OS X 10.9. |
Thank you for your quick test and report... Can we close this issue? |
Close, now using cmake in develop-500. |
I have a multicore processor so I use
make -j9
to benefit from GNU make parallelism.But that fails with:
The problem is that the Makefile tries to create a
obj
directory before each compilation.Using autoconf + automake would solve that problem and also #61, #79, #100, #116
The text was updated successfully, but these errors were encountered: