2013-07-16 13:28:28 +02:00
|
|
|
from waflib import Utils
|
|
|
|
|
|
|
|
def __get_cc_env_vars__(cc):
|
|
|
|
cmd = cc + ['-dM', '-E', '-']
|
|
|
|
try:
|
|
|
|
p = Utils.subprocess.Popen(cmd, stdin=Utils.subprocess.PIPE,
|
|
|
|
stdout=Utils.subprocess.PIPE,
|
|
|
|
stderr=Utils.subprocess.PIPE)
|
|
|
|
p.stdin.write('\n'.encode())
|
|
|
|
return p.communicate()[0]
|
|
|
|
except Exception:
|
|
|
|
return ""
|
|
|
|
|
2014-04-26 23:44:15 +02:00
|
|
|
def __test_and_add_flags__(ctx, flags):
|
|
|
|
for flag in flags:
|
|
|
|
ctx.check_cc(cflags=flag, uselib_store="compiler", mandatory=False)
|
|
|
|
ctx.env.CFLAGS += ctx.env.CFLAGS_compiler
|
|
|
|
|
2013-07-16 13:28:28 +02:00
|
|
|
def __add_generic_flags__(ctx):
|
2014-07-09 22:10:33 +02:00
|
|
|
ctx.env.CFLAGS += ["-D_ISOC99_SOURCE", "-D_POSIX_C_SOURCE=200809L",
|
|
|
|
"-D_BSD_SOURCE", "-D_XOPEN_SOURCE=700",
|
2013-07-16 13:28:28 +02:00
|
|
|
"-D_LARGEFILE_SOURCE", "-D_FILE_OFFSET_BITS=64",
|
|
|
|
"-D_LARGEFILE64_SOURCE",
|
2014-02-01 23:56:56 +01:00
|
|
|
"-std=c99", "-Wall"]
|
2013-07-16 13:28:28 +02:00
|
|
|
|
|
|
|
if ctx.is_debug_build():
|
|
|
|
ctx.env.CFLAGS += ['-g']
|
|
|
|
|
|
|
|
def __add_gcc_flags__(ctx):
|
2014-05-14 20:27:24 +02:00
|
|
|
ctx.env.CFLAGS += ["-Wall", "-Wundef", "-Wmissing-prototypes", "-Wshadow",
|
2013-07-16 13:28:28 +02:00
|
|
|
"-Wno-switch", "-Wno-parentheses", "-Wpointer-arith",
|
|
|
|
"-Wredundant-decls", "-Wno-pointer-sign",
|
|
|
|
"-Werror=implicit-function-declaration",
|
|
|
|
"-Wno-error=deprecated-declarations",
|
|
|
|
"-Wno-error=unused-function" ]
|
2014-04-26 23:44:15 +02:00
|
|
|
__test_and_add_flags__(ctx, ["-Wempty-body"])
|
2014-05-14 20:27:24 +02:00
|
|
|
__test_and_add_flags__(ctx, ["-Wdisabled-optimization"])
|
|
|
|
__test_and_add_flags__(ctx, ["-Wstrict-prototypes"])
|
2013-07-16 13:28:28 +02:00
|
|
|
|
|
|
|
def __add_clang_flags__(ctx):
|
2014-02-13 23:14:00 +01:00
|
|
|
ctx.env.CFLAGS += ["-Wno-logical-op-parentheses", "-fcolor-diagnostics",
|
2014-04-26 23:44:15 +02:00
|
|
|
"-Wno-tautological-compare",
|
2014-02-13 23:14:00 +01:00
|
|
|
"-Wno-tautological-constant-out-of-range-compare" ]
|
2013-07-16 13:28:28 +02:00
|
|
|
|
|
|
|
def __add_mingw_flags__(ctx):
|
|
|
|
ctx.env.CFLAGS += ['-D__USE_MINGW_ANSI_STDIO=1']
|
2013-12-28 04:45:52 +01:00
|
|
|
ctx.env.LAST_LINKFLAGS += ['-mwindows']
|
2013-07-16 13:28:28 +02:00
|
|
|
|
2013-11-22 21:30:00 +01:00
|
|
|
def __add_cygwin_flags__(ctx):
|
|
|
|
ctx.env.CFLAGS += ['-mwin32']
|
2014-02-13 23:29:23 +01:00
|
|
|
ctx.env.CFLAGS += ['-U__STRICT_ANSI__']
|
2013-11-22 21:30:00 +01:00
|
|
|
|
2013-07-16 13:28:28 +02:00
|
|
|
__compiler_map__ = {
|
|
|
|
'__GNUC__': __add_gcc_flags__,
|
|
|
|
'__clang__': __add_clang_flags__,
|
|
|
|
'__MINGW32__': __add_mingw_flags__,
|
2013-11-22 21:30:00 +01:00
|
|
|
'__CYGWIN__': __add_cygwin_flags__,
|
2013-07-16 13:28:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
def __apply_map__(ctx, fnmap):
|
2013-11-24 14:10:35 +01:00
|
|
|
if not getattr(ctx, 'CC_ENV_VARS', None):
|
|
|
|
ctx.CC_ENV_VARS = str(__get_cc_env_vars__(ctx.env.CC))
|
2013-07-16 13:28:28 +02:00
|
|
|
for k, fn in fnmap.items():
|
2013-11-24 14:10:35 +01:00
|
|
|
if ctx.CC_ENV_VARS.find(k) > 0:
|
2013-07-16 13:28:28 +02:00
|
|
|
fn(ctx)
|
|
|
|
|
|
|
|
def configure(ctx):
|
|
|
|
__add_generic_flags__(ctx)
|
|
|
|
__apply_map__(ctx, __compiler_map__)
|
|
|
|
|