Fix icc compiler on linux (#6488)

This commit is contained in:
Eduardo Bart
2017-12-15 14:01:23 -02:00
committed by Andreas Rumpf
parent 2654a77a60
commit 7c3e00d469

View File

@@ -138,12 +138,14 @@ compiler icl:
# Intel compilers try to imitate the native ones (gcc and msvc)
when defined(windows):
result = vcc()
result.name = "icl"
result.compilerExe = "icl"
result.linkerExe = "icl"
else:
result = gcc()
result.name = "icl"
result.compilerExe = "icl"
result.linkerExe = "icl"
result.name = "icc"
result.compilerExe = "icc"
result.linkerExe = "icc"
# Local C Compiler
compiler lcc: