use same compiler switches as core for extensions

This commit is contained in:
Andrew MacIntyre 2003-12-02 12:17:59 +00:00
parent 70ef8692a1
commit 63ee110cf7

View file

@ -63,8 +63,8 @@ class EMXCCompiler (UnixCCompiler):
# Hard-code GCC because that's what this is all about.
# XXX optimization, warnings etc. should be customizable.
self.set_executables(compiler='gcc -Zomf -Zmt -O2 -Wall',
compiler_so='gcc -Zomf -Zmt -O2 -Wall',
self.set_executables(compiler='gcc -Zomf -Zmt -O3 -fomit-frame-pointer -mprobe -Wall',
compiler_so='gcc -Zomf -Zmt -O3 -fomit-frame-pointer -mprobe -Wall',
linker_exe='gcc -Zomf -Zmt -Zcrtdll',
linker_so='gcc -Zomf -Zmt -Zcrtdll -Zdll')