diff options
author | John Hodge <tpg@mutabah.net> | 2017-07-08 18:09:35 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2017-07-08 18:09:35 +0800 |
commit | 4a954d768f5d314133e85629546fdb4a4f587d2d (patch) | |
tree | 2e498bc166b5809fe1d8afc879b92033760ff86b /src/trans/target.cpp | |
parent | 029dd3f14422f0587b63e33781afe072bafc094a (diff) | |
download | mrust-4a954d768f5d314133e85629546fdb4a4f587d2d.tar.gz |
Codegen+Loading - MSVC support draft (libcore compiles, doesn't load)
Diffstat (limited to 'src/trans/target.cpp')
-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 43b63822..5b77d848 100644 --- a/src/trans/target.cpp +++ b/src/trans/target.cpp @@ -13,7 +13,7 @@ TargetArch ARCH_X86_64 = { "x86_64", 64, false, - { true, false, true, true, true } + { false /*true*/, false, true, true, true } }; TargetSpec g_target; |