-
Notifications
You must be signed in to change notification settings - Fork 214
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
Parts of libcompiler_builtins are compiled as WX #183
Comments
Oh dear definitely seems like something to fix! @djc would you be up for submitting a patch for at least the easy piece, removing compilation of chkstk files on non-windows platforms? |
Uh, I guess. Do you mean like this? diff --git a/build.rs b/build.rs
index 25cc520..787906f 100644
--- a/build.rs
+++ b/build.rs
@@ -4172,8 +4172,6 @@ mod c {
&[
"i386/ashldi3.S",
"i386/ashrdi3.S",
- "i386/chkstk.S",
- "i386/chkstk2.S",
"i386/divdi3.S",
"i386/floatdidf.S",
"i386/floatdisf.S",
@@ -4188,6 +4186,14 @@ mod c {
"i386/umoddi3.S",
],
);
+ if target_os == "windows" {
+ sources.extend(
+ &[
+ "i386/chkstk.S",
+ "i386/chkstk2.S",
+ ],
+ );
+ }
}
} |
I think that should do it yeah! If you'd like as well, it'd be awesome to add a test into this repo to ensure that we don't regress this. |
I have no clue how I'd test that, but if you can guide me along maybe I can come up with something. |
Right now the test script is just a shell script and has a few other examples, could that be added to? |
Implement x86 chkstk in "rust" cc #183 Basically the same as the x86_64 ones, except `__alloca` doesn't need to fix the parameter register. I've manually verified that the disassembly is the same, and that these work in a compiled rust program. The second commit disables compiling probestack functions for `feature = mangled-names`. They aren't needed during testing because they aren't comparison tested and the unmangled versions are the ones that actually get used. r? @alexcrichton
Indeed, those files should only be built for Windows. See also llvm-mirror/compiler-rt@1955731 |
Similar to rust-lang/rust#34482, I still see a number of warnings like this when compiling rust-1.19.0:
The text was updated successfully, but these errors were encountered: