-
Notifications
You must be signed in to change notification settings - Fork 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
cargo run fails on OSX 10.12.1 #480
Comments
Oh dear! Looks like OSX removed these I suppose? If you want to send a PR updating the "ignore whitelist" in |
I tried to build on Travis - and the test runs on i686-apple-darwin and x86_64-apple-darwin. Is there a place where I can obtain the header files for a given architecture so I could compare Travis' environment to mine? |
It's likely that you're running a different version of OSX than Travis, but it doesn't necessarily mean your machine has a problem. I unfortunately don't know of a way to extract header files from Travis. |
Fix for removed OS X constants. https://developer.apple.com/library/content/releasenotes/General/APIDiffsMacOS10_12/Swift/Darwin.html Fixes #480
fix rust-lang#480 and add simple test cases for that. r? @fiveop
cd libc-test && cargo run
fails with:if I read the error correctly then it misses
KERN_KDENABLE_BG_TRACE
andKERN_KDDISABLE_BG_TRACE
. These are indeed missing in/usr/include/...
in/usr/include/sys/sysctl.h
there are some defines such asKERN_KDEBUG
but not the two missing ones.My setup:
The text was updated successfully, but these errors were encountered: