diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2009-05-08 16:36:06 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2009-05-08 16:36:06 +0200 |
commit | db4f617afcd095db087dcb52e3ea603cca111da7 (patch) | |
tree | eeffcc8fb523171dc394c136acf9b8006ec4138f /config/nimrod.cfg | |
parent | 08bc9ac03c49db7bfcdee82f46aadf95a324e015 (diff) | |
download | Nim-db4f617afcd095db087dcb52e3ea603cca111da7.tar.gz |
version 0.7.8
Diffstat (limited to 'config/nimrod.cfg')
-rw-r--r-- | config/nimrod.cfg | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/config/nimrod.cfg b/config/nimrod.cfg index e06472cf5..4eb7b785b 100644 --- a/config/nimrod.cfg +++ b/config/nimrod.cfg @@ -51,6 +51,20 @@ hint[LineTooLong]=off passc = "-cxxlib" @end +# Configuration for the GNU C/C++ compiler: +@if windows: + gcc.path = r"$nimrod\dist\mingw\bin" +@end +gcc.options.debug = "-g" +@if macosx: + gcc.options.always = "-w -fasm-blocks" +@else: + gcc.options.always = "-w" +@end +gcc.options.speed = "-O3 -fno-strict-aliasing" +gcc.options.size = "-Os" +#passl = "-pg" + # Configuration for the LLVM GCC compiler: llvm_gcc.options.debug = "-g" llvm_gcc.options.always = "-w" @@ -66,19 +80,6 @@ vcc.options.always = "/nologo" vcc.options.speed = "/Ox /arch:SSE2" vcc.options.size = "/O1" -# Configuration for the GNU C/C++ compiler: -@if windows: - gcc.path = r"$nimrod\dist\mingw\bin" -@end -gcc.options.debug = "-g" -@if macosx: - gcc.options.always = "-w -fasm-blocks" -@else: - gcc.options.always = "-w" -@end -gcc.options.speed = "-O3 -fno-strict-aliasing" -gcc.options.size = "-Os" - # Configuration for the Digital Mars C/C++ compiler: @if windows: dmc.path = r"$nimrod\dist\dm\bin" |