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.
2 parents e3ade0f + 1d4b024 commit 4fa22d9Copy full SHA for 4fa22d9
src/librustc_back/target/i686_unknown_dragonfly.rs
@@ -11,7 +11,7 @@
11
use target::Target;
12
13
pub fn target() -> Target {
14
- let mut base = super::draginfly_base::opts();
+ let mut base = super::dragonfly_base::opts();
15
base.pre_link_args.push("-m32".to_string());
16
17
Target {
src/librustc_back/target/mod.rs
@@ -63,6 +63,7 @@ mod arm_unknown_linux_gnueabihf;
63
mod i686_apple_darwin;
64
mod i386_apple_ios;
65
mod i686_pc_windows_gnu;
66
+mod i686_unknown_dragonfly;
67
mod i686_unknown_linux_gnu;
68
mod mips_unknown_linux_gnu;
69
mod mipsel_unknown_linux_gnu;
@@ -338,6 +339,7 @@ impl Target {
338
339
340
x86_64_unknown_freebsd,
341
342
+ i686_unknown_dragonfly,
343
x86_64_unknown_dragonfly,
344
345
x86_64_apple_darwin,
0 commit comments