about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/gcc_util.rs7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/gcc_util.rs b/src/gcc_util.rs
index 91a815c0771..fc992ec6d2a 100644
--- a/src/gcc_util.rs
+++ b/src/gcc_util.rs
@@ -1,3 +1,4 @@
+use gccjit::Context;
 use smallvec::{smallvec, SmallVec};
 
 use rustc_codegen_ssa::target_features::{
@@ -204,7 +205,11 @@ fn handle_native(name: &str) -> &str {
         return name;
     }
 
-    unimplemented!();
+    // Get the native arch.
+    let context = Context::default();
+    context.get_target_info().arch().unwrap()
+        .to_str()
+        .unwrap()
 }
 
 pub fn target_cpu(sess: &Session) -> &str {