diff options
Diffstat (limited to 'compiler/extccomp.nim')
-rwxr-xr-x | compiler/extccomp.nim | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/compiler/extccomp.nim b/compiler/extccomp.nim index a673c5ca0..8fa52b5d2 100755 --- a/compiler/extccomp.nim +++ b/compiler/extccomp.nim @@ -69,7 +69,8 @@ const linkerExe: "llvm-gcc", linkTmpl: "$options $buildgui $builddll -o $exefile $objfiles", includeCmd: " -I", - debug: "", pic: "-fPIC", + debug: "", + pic: "-fPIC", asmStmtFrmt: "asm($1);$n", props: {hasSwitchRange, hasComputedGoto, hasCpp}), (name: "clang", @@ -83,7 +84,8 @@ const linkerExe: "clang", linkTmpl: "$options $buildgui $builddll -o $exefile $objfiles", includeCmd: " -I", - debug: "", pic: "-fPIC", + debug: "", + pic: "-fPIC", asmStmtFrmt: "asm($1);$n", props: {hasSwitchRange, hasComputedGoto, hasCpp}), (name: "lcc", |