2013-07-16 11:28:28 +00: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 21:44:15 +00: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 11:28:28 +00:00
|
|
|
def __add_generic_flags__(ctx):
|
2014-07-10 07:25:37 +00:00
|
|
|
ctx.env.CFLAGS += ["-D_ISOC99_SOURCE", "-D_GNU_SOURCE",
|
2013-07-16 11:28:28 +00:00
|
|
|
"-D_LARGEFILE_SOURCE", "-D_FILE_OFFSET_BITS=64",
|
|
|
|
"-D_LARGEFILE64_SOURCE",
|
2014-02-01 22:56:56 +00:00
|
|
|
"-std=c99", "-Wall"]
|
2013-07-16 11:28:28 +00:00
|
|
|
|
2014-07-19 16:45:43 +00:00
|
|
|
if ctx.is_optimization():
|
|
|
|
ctx.env.CFLAGS += ['-O2']
|
|
|
|
|
2013-07-16 11:28:28 +00:00
|
|
|
if ctx.is_debug_build():
|
|
|
|
ctx.env.CFLAGS += ['-g']
|
|
|
|
|
2014-12-14 19:44:27 +00:00
|
|
|
__test_and_add_flags__(ctx, ["-Werror=implicit-function-declaration",
|
|
|
|
"-Wno-error=deprecated-declarations",
|
|
|
|
"-Wno-error=unused-function",
|
|
|
|
"-Wempty-body",
|
|
|
|
"-Wdisabled-optimization",
|
|
|
|
"-Wstrict-prototypes",
|
2014-12-17 21:24:20 +00:00
|
|
|
"-Wno-format-zero-length",
|
2015-05-09 17:59:52 +00:00
|
|
|
"-Werror=format-security",
|
|
|
|
"-Wno-redundant-decls"])
|
2014-12-17 21:24:20 +00:00
|
|
|
|
|
|
|
def __add_gcc_flags__(ctx):
|
|
|
|
ctx.env.CFLAGS += ["-Wall", "-Wundef", "-Wmissing-prototypes", "-Wshadow",
|
2015-03-02 18:09:25 +00:00
|
|
|
"-Wno-switch", "-Wparentheses", "-Wpointer-arith",
|
2015-05-09 17:59:52 +00:00
|
|
|
"-Wno-pointer-sign"]
|
2013-07-16 11:28:28 +00:00
|
|
|
|
|
|
|
def __add_clang_flags__(ctx):
|
2014-02-13 22:14:00 +00:00
|
|
|
ctx.env.CFLAGS += ["-Wno-logical-op-parentheses", "-fcolor-diagnostics",
|
2014-04-26 21:44:15 +00:00
|
|
|
"-Wno-tautological-compare",
|
2014-02-13 22:14:00 +00:00
|
|
|
"-Wno-tautological-constant-out-of-range-compare" ]
|
2013-07-16 11:28:28 +00:00
|
|
|
|
2015-01-07 20:33:14 +00:00
|
|
|
def __add_mswin_flags__(ctx):
|
2015-01-16 05:20:42 +00:00
|
|
|
ctx.env.CFLAGS += ['-D_WIN32_WINNT=0x600', '-DUNICODE', '-DCOBJMACROS',
|
|
|
|
'-U__STRICT_ANSI__']
|
2015-01-07 20:33:14 +00:00
|
|
|
|
2013-07-16 11:28:28 +00:00
|
|
|
def __add_mingw_flags__(ctx):
|
2015-01-07 20:33:14 +00:00
|
|
|
__add_mswin_flags__(ctx)
|
2015-03-29 11:36:46 +00:00
|
|
|
ctx.env.CFLAGS += ['-municode', '-D__USE_MINGW_ANSI_STDIO=1']
|
|
|
|
ctx.env.LAST_LINKFLAGS += ['-municode', '-mwindows']
|
2013-07-16 11:28:28 +00:00
|
|
|
|
2013-11-22 20:30:00 +00:00
|
|
|
def __add_cygwin_flags__(ctx):
|
2015-01-07 20:33:14 +00:00
|
|
|
__add_mswin_flags__(ctx)
|
2013-11-22 20:30:00 +00:00
|
|
|
ctx.env.CFLAGS += ['-mwin32']
|
|
|
|
|
2013-07-16 11:28:28 +00:00
|
|
|
__compiler_map__ = {
|
|
|
|
'__GNUC__': __add_gcc_flags__,
|
|
|
|
'__clang__': __add_clang_flags__,
|
|
|
|
'__MINGW32__': __add_mingw_flags__,
|
2013-11-22 20:30:00 +00:00
|
|
|
'__CYGWIN__': __add_cygwin_flags__,
|
2013-07-16 11:28:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
def __apply_map__(ctx, fnmap):
|
2013-11-24 13:10:35 +00:00
|
|
|
if not getattr(ctx, 'CC_ENV_VARS', None):
|
|
|
|
ctx.CC_ENV_VARS = str(__get_cc_env_vars__(ctx.env.CC))
|
2013-07-16 11:28:28 +00:00
|
|
|
for k, fn in fnmap.items():
|
2013-11-24 13:10:35 +00:00
|
|
|
if ctx.CC_ENV_VARS.find(k) > 0:
|
2013-07-16 11:28:28 +00:00
|
|
|
fn(ctx)
|
|
|
|
|
|
|
|
def configure(ctx):
|
|
|
|
__add_generic_flags__(ctx)
|
|
|
|
__apply_map__(ctx, __compiler_map__)
|
|
|
|
|