-
Notifications
You must be signed in to change notification settings - Fork 15
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 CI and the nightly release work on Windows #127
Conversation
I believe this is the issue we are running into: rust-lang/rust-bindgen#1797 (comment) |
3554097
to
8a8e3aa
Compare
8a8e3aa
to
f129aa8
Compare
48c5342
to
a23a28a
Compare
I made some progress on this by playing around on my Windows VM... When you see something like this:
It's because Next the Microsoft compiler,
I resolved that by just telling the build to use > $env:CC = "clang"
> $env:CXX = "clang++" This isn't 100% perfect though because CMake decides to compile position-independent code (
|
I'm going to close this for now. Windows builds should be naturally handled when |
Closes #101.