The "-O2" flag should be separated from the threading support. Besides, it belongs to CCFLAGS (compile flags common to C and C++), not to CPPFLAGS (preprocessor flags). While at that, enable all warnings by -Wall, except those about non-virtual destructors, which are "inherited" from Qt. Portability is not affected since -O2 was already gcc-specific. Signed-off-by: Pavel Roskin <proski@gnu.org> diff --git a/SConstruct b/SConstruct index 55fd206..b0b5d0f 100644 --- a/SConstruct +++ b/SConstruct @@ -27,8 +27,10 @@ env['ENV']['HOME'] = os.environ['HOME'] installDir = env['HOME']+'/bin' +env.Append( CCFLAGS = ['-O2', '-Wall' ,'-Wno-non-virtual-dtor'] ) + ## Uncomment the following if you need threading support threading -env.Append( CPPFLAGS = ['-O2', '-DQT_THREAD_SUPPORT', '-D_REENTRANT', '-I/usr/include/qt3'] ) +env.Append( CPPFLAGS = ['-DQT_THREAD_SUPPORT', '-D_REENTRANT', '-I/usr/include/qt3'] ) if os.uname()[0] == "FreeBSD": env.Append(LINKFLAGS=["-pthread"]) -- Regards, Pavel Roskin - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.htmlReceived on Wed Dec 21 13:11:45 2005
This archive was generated by hypermail 2.1.8 : 2005-12-21 13:11:51 EST