-
Notifications
You must be signed in to change notification settings - Fork 13.1k
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
runtime makefile doesn't properly handle header dependency #2547
Comments
It looks like the build system tries to make all of the runtime object files depend on all of the header files, using wildcard to get all the .h files in the rt/ directory. This doesn't work, since the wildcard will be expanded in the current directory (that is, the build directory). Instead of trying to fix that, I'm going to do it right way and get the compiler to generate header dependency information. |
The change burned OS X, so I had to back it out. |
…loses rust-lang#2547." This reverts commit 31f4b63.
note on deterministic 'fake' API implementations Now that we also have fake clocks, it seems prudent to warn about this at the top of the readme. r? `@rust-lang/miri`
The build system for the runtime doesn't handle dependency on header files. There are common approaches for dealing with this. (Probably the most common approach is "screw it, I'll just use autotools", but there are better ones that that...)
The text was updated successfully, but these errors were encountered: