diff options
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" |