summaryrefslogtreecommitdiff
path: root/buildtools/wafsamba/samba_autoconf.py
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-03-23 13:52:23 -0400
committerAndrew Tridgell <tridge@samba.org>2010-04-06 20:27:01 +1000
commit3b87d36c2bc598f32eec2d7b50f9118d7e3d063c (patch)
treee23feaeb78efe9471e641528039453a5c582bd2c /buildtools/wafsamba/samba_autoconf.py
parent9c0c4a5011e58c3a3195f995e05efba1248ad422 (diff)
downloadsamba-3b87d36c2bc598f32eec2d7b50f9118d7e3d063c.tar.gz
samba-3b87d36c2bc598f32eec2d7b50f9118d7e3d063c.tar.bz2
samba-3b87d36c2bc598f32eec2d7b50f9118d7e3d063c.zip
build: test all the developer cflags before adding them
Diffstat (limited to 'buildtools/wafsamba/samba_autoconf.py')
-rw-r--r--buildtools/wafsamba/samba_autoconf.py21
1 files changed, 16 insertions, 5 deletions
diff --git a/buildtools/wafsamba/samba_autoconf.py b/buildtools/wafsamba/samba_autoconf.py
index 5a733b6f59..fa24109363 100644
--- a/buildtools/wafsamba/samba_autoconf.py
+++ b/buildtools/wafsamba/samba_autoconf.py
@@ -344,8 +344,9 @@ def CHECK_STRUCTURE_MEMBER(conf, structname, member,
def CHECK_CFLAGS(conf, cflags):
'''check if the given cflags are accepted by the compiler
'''
- return conf.check(fragment='int main(void) { return 0; }',
+ return conf.check(fragment='int main(void) { return 0; }\n',
execute=0,
+ type='nolink',
ccflags=cflags,
msg="Checking compiler accepts %s" % cflags)
@@ -483,7 +484,8 @@ def SAMBA_CONFIG_H(conf, path=None):
if Options.options.developer:
# we add these here to ensure that -Wstrict-prototypes is not set during configure
- conf.ADD_CFLAGS('-Wall -g -Wfatal-errors -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings -Werror-implicit-function-declaration -Wformat=2 -Wno-format-y2k')
+ conf.ADD_CFLAGS('-Wall -g -Wfatal-errors -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings -Werror-implicit-function-declaration -Wformat=2 -Wno-format-y2k',
+ testflags=True)
if path is None:
conf.write_config_header('config.h', top=True)
@@ -502,14 +504,23 @@ def CONFIG_PATH(conf, name, default):
conf.env[name] = conf.env['PREFIX'] + default
conf.define(name, conf.env[name], quote=True)
-##############################################################
-# add some CFLAGS to the command line
+
@conf
-def ADD_CFLAGS(conf, flags):
+def ADD_CFLAGS(conf, flags, testflags=False):
+ '''add some CFLAGS to the command line
+ optionally set testflags to ensure all the flags work
+ '''
+ if testflags:
+ ok_flags=[]
+ for f in flags.split():
+ if CHECK_CFLAGS(conf, f):
+ ok_flags.append(f)
+ flags = ok_flags
if not 'EXTRA_CFLAGS' in conf.env:
conf.env['EXTRA_CFLAGS'] = []
conf.env['EXTRA_CFLAGS'].extend(TO_LIST(flags))
+
##############################################################
# add some extra include directories to all builds
@conf