-
Notifications
You must be signed in to change notification settings - Fork 14
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
build: don't force a specific compiler/version #60
Conversation
Running tests. |
@@ -175,8 +173,6 @@ fn main() { | |||
println!("cargo:rustc-link-lib=c"); | |||
build.file("./deps/wasi_to_unknown.cpp"); | |||
} | |||
} else if !(compile_target_os == "windows" && compile_target_env == "msvc") { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it possible to add a GitHub workflow to ensure your case never gets broken?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You mean adding an ubuntu+gcc variant to the matrix?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You mean adding an ubuntu+gcc variant to the matrix?
I could do that (i.e. by passing CXX=g++
in the env), but I don't see an easy way to test that the build actually ends up using gcc...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@steveklabnik wdyt?
See #59 for context.
Closes #59.