1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-03 13:47:25 +03:00

build: more developer flags

This commit is contained in:
Andrew Tridgell 2010-02-23 08:26:55 +11:00
parent 13cbd9f919
commit 186e7115ab

View File

@ -34,9 +34,6 @@ def configure(conf):
conf.check_tool('compiler_cc')
if Options.options.developer:
conf.ADD_CFLAGS('-Wall -g -DDEVELOPER')
conf.env['RPATH_ON_INSTALL'] = Options.options.enable_rpath
conf.DEFUN('_GNU_SOURCE', 1)
@ -156,6 +153,9 @@ main() { foo("hello"); }
quote=0,
msg="Checking for C99 vsnprintf")
if Options.options.developer:
conf.ADD_CFLAGS('-Wall -g -Wfatal-errors -DDEVELOPER -W -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings -Werror-implicit-function-declaration -Wformat=2 -Wno-format-y2k')
conf.SAMBA_CONFIG_H()
conf.SAMBA_BUILD_ENV()