diff options
author | EXetoC <exetoc@gmail.com> | 2014-05-09 23:22:43 +0200 |
---|---|---|
committer | EXetoC <exetoc@gmail.com> | 2014-05-09 23:22:43 +0200 |
commit | 7754bc73b484804c57268a20d27bbe9ac9e34ab3 (patch) | |
tree | 181ed5d21c48c0a7019a07aa67f57039ce04018b /compiler | |
parent | 4d5ad91775d4165f2798d31205d0fe3035bd8f70 (diff) | |
download | Nim-7754bc73b484804c57268a20d27bbe9ac9e34ab3.tar.gz |
gpp -> gcc
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/main.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/main.nim b/compiler/main.nim index f833394f7..b4af49248 100644 --- a/compiler/main.nim +++ b/compiler/main.nim @@ -310,7 +310,7 @@ proc mainCommand* = of "cpp", "compiletocpp": extccomp.cExt = ".cpp" gCmd = cmdCompileToCpp - if cCompiler == ccGcc: setCC("gpp") + if cCompiler == ccGcc: setCC("gcc") wantMainModule() defineSymbol("cpp") commandCompileToC() |