diff options
author | Araq <rumpf_a@web.de> | 2012-07-02 01:41:40 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-07-02 01:41:40 +0200 |
commit | dd97e00553884495c486a121bb71c49bc19c1271 (patch) | |
tree | eca4e7d2df28d5f673b17281b7ddee8f332fec29 /compiler | |
parent | f2af2fb4782cff6800ad724f60dc2dcbdbffd13c (diff) | |
parent | ec95d54a67bca6c99b4caf313198fd2482c3f76e (diff) | |
download | Nim-dd97e00553884495c486a121bb71c49bc19c1271.tar.gz |
Merge branch 'master' of github.com:Araq/Nimrod
Diffstat (limited to 'compiler')
-rwxr-xr-x | compiler/extccomp.nim | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/compiler/extccomp.nim b/compiler/extccomp.nim index 2872f28a7..15061faae 100755 --- a/compiler/extccomp.nim +++ b/compiler/extccomp.nim @@ -16,7 +16,7 @@ import type TSystemCC* = enum ccNone, ccGcc, ccLLVM_Gcc, ccCLang, ccLcc, ccBcc, ccDmc, ccWcc, ccVcc, - ccTcc, ccPcc, ccUcc, ccIcc, ccGpp + ccTcc, ccPcc, ccUcc, ccIcl, ccGpp TInfoCCProp* = enum # properties of the C compiler: hasSwitchRange, # CC allows ranges in switch statements (GNU C) hasComputedGoto, # CC has computed goto (GNU C extension) @@ -121,16 +121,16 @@ compiler vcc: asmStmtFrmt: "__asm{$n$1$n}$n", props: {hasCpp, hasAssume}) -compiler icc: +compiler icl: # Intel compilers try to imitate the native ones (gcc and msvc) when defined(windows): result = vcc() else: result = gcc() - result.name = "icc" - result.compilerExe = "icc" - result.linkerExe = "icc" + result.name = "icl" + result.compilerExe = "icl" + result.linkerExe = "icl" compiler lcc: result = ( @@ -293,7 +293,7 @@ const tcc(), pcc(), ucc(), - icc(), + icl(), gpp()] const |