-
Notifications
You must be signed in to change notification settings - Fork 181
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
Using parralel jobs in makefiles, library builds only on the second try #84
Comments
I can't reproduce the issue, can you detail all the commands you run? |
First I checkout cloned repo to the last release version: |
I get it, your command In that case, it builds all targets at the same time, when it should first build the config file, then build the object file. I've made a patch that will be release in next version 2.5 amongst other changes. $ cd src
$ make ../include/ulfius-cfg.h
$ make CC=armv7l-unknown-linux-gnueabihf-gcc -j16 libulfius.so That will force your build process to make the config file first, then build the library. Thanks for the report! |
As you can see, after build fails, the right config file is generated, so the second build succeeds. Can you fix that small problem?
The text was updated successfully, but these errors were encountered: