From: Paul Brossier Date: Sat, 24 Dec 2016 09:37:42 +0000 (+0100) Subject: wscript: remove trailing spaces X-Git-Tag: 0.4.4~22 X-Git-Url: https://git.aubio.org/?p=aubio.git;a=commitdiff_plain;h=578d3a2304f3f69ea6c8aafd28ebd3c2d3439a73;hp=e79943b00d5c456d63f5e223bba3d631fd0857f5 wscript: remove trailing spaces --- diff --git a/wscript b/wscript index 02b2db68..be43c256 100644 --- a/wscript +++ b/wscript @@ -135,12 +135,12 @@ def configure(ctx): ctx.define('DEBUG', 1) else: ctx.define('NDEBUG', 1) - + if ctx.env.CC_NAME != 'msvc': # enable debug symbols and configure warnings ctx.env.CFLAGS += ['-g', '-Wall', '-Wextra'] if ctx.options.build_type == "release": - # set optimization level + # set optimization level ctx.env.CFLAGS += ['-O2'] else: # enable debug symbols @@ -148,14 +148,14 @@ def configure(ctx): ctx.env.LINKFLAGS += ['/DEBUG', '/INCREMENTAL:NO'] # configure warnings ctx.env.CFLAGS += ['/W4', '/D_CRT_SECURE_NO_WARNINGS'] - # set optimization level and runtime libs + # set optimization level and runtime libs if (ctx.options.build_type == "release"): ctx.env.CFLAGS += ['/Ox'] ctx.env.CFLAGS += ['/MD'] else: assert(ctx.options.build_type == "debug") ctx.env.CFLAGS += ['/MDd'] - + ctx.check_cc(lib='m', uselib_store='M', mandatory=False) if target_platform not in ['win32', 'win64']: