Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db69136 commit a0b0aecCopy full SHA for a0b0aec
compiler/rustc_target/src/spec/i386_unknown_linux_gnu.rs
@@ -0,0 +1,8 @@
1
+use crate::spec::Target;
2
+
3
+pub fn target() -> Target {
4
+ let mut base = super::i686_unknown_linux_gnu::target();
5
+ base.cpu = "i386".to_string();
6
+ base.llvm_target = "i386-unknown-linux-gnu".to_string();
7
+ base
8
+}
compiler/rustc_target/src/spec/i486_unknown_linux_gnu.rs
+ base.cpu = "i486".to_string();
+ base.llvm_target = "i486-unknown-linux-gnu".to_string();
0 commit comments