diff options
author | Fredrik Høisæther Rasch <fredrik.h.rasch@uit.no> | 2017-03-20 11:22:21 +0100 |
---|---|---|
committer | Fredrik Høisæther Rasch <fredrik.h.rasch@uit.no> | 2017-03-21 12:17:09 +0100 |
commit | 7267d35c3fe761364d90410ba1aae991bd8e92ef (patch) | |
tree | 71ba5b7a74d8c18f47914bac64f81506e5ef8dcb | |
parent | 4002bdf8738860f835c8b8af440b2d34672c1695 (diff) | |
download | Nim-7267d35c3fe761364d90410ba1aae991bd8e92ef.tar.gz |
Removed arch option in compiler definition
Previous Artifiact, changed to better reflect the settings in the default nim.cfg
-rw-r--r-- | compiler/extccomp.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/extccomp.nim b/compiler/extccomp.nim index 70cd411fe..f92fe82d6 100644 --- a/compiler/extccomp.nim +++ b/compiler/extccomp.nim @@ -112,7 +112,7 @@ compiler vcc: result = ( name: "vcc", objExt: "obj", - optSpeed: " /Ogityb2 /G7 /arch:SSE2 ", + optSpeed: " /Ogityb2 /G7 ", optSize: " /O1 /G7 ", compilerExe: "cl", cppCompiler: "cl", |