-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
make doesn't respect newly added files without make clean #3658
Comments
fixes official-stockfish#3658 dependencies are now regenerated for each code change, this adds some 1s overhead in compile time, but avoids potential miscompilations or build problems. No functional change
good to have an issue, but I don't think the above diff is not good enough, a more thorough fix is the PR above. The disadvantage is somewhat slower compile times (1s overhead), which we can only get rid off by having a .dep file per source file, IMO. |
Having one .dep file per source shouldn't be an issue, all build artifacts could be placed in a separate "build" directory. I think the so post I linked above has a solution of this kind. |
fixes official-stockfish#3658 dependencies are now regenerated for each code change, this adds some 1s overhead in compile time, but avoids potential miscompilations or build problems. closes official-stockfish#3659 No functional change
Makes abrok break every time a new .cpp file is added, and users also were confused by it.
Caused by some .depend thingy.
also https://stackoverflow.com/a/30142139/3763139 may be of help
The text was updated successfully, but these errors were encountered: