diff options
author | John Hodge <tpg@mutabah.net> | 2018-06-03 09:46:33 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2018-06-03 09:46:33 +0800 |
commit | 6a9a81064ae74b70bc93855ba5a9f39ffc996e1b (patch) | |
tree | 1170d157de1064bf418aa2bf16765d4301be7acc | |
parent | 2dcdcf9dec83505dde64d21ff7b35ac16c1cccce (diff) | |
download | mrust-6a9a81064ae74b70bc93855ba5a9f39ffc996e1b.tar.gz |
Trans - Fix target_os for mac
-rw-r--r-- | src/trans/target.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/trans/target.cpp b/src/trans/target.cpp index 423665a5..87b5aa1d 100644 --- a/src/trans/target.cpp +++ b/src/trans/target.cpp @@ -334,7 +334,7 @@ namespace else if(target_name == "x86_64-apple-macosx") { return TargetSpec { - "unix", "macosx", "gnu", CodegenMode::Gnu11, "x86_64-apple-darwin", + "unix", "macos", "gnu", CodegenMode::Gnu11, "x86_64-apple-darwin", ARCH_X86_64 }; } |