- Timestamp:
- Dec 24, 2016, 10:37:42 AM (8 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, sampler, yinfft+
- Children:
- fb6a0ff
- Parents:
- e79943b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
wscript
re79943b r578d3a2 136 136 else: 137 137 ctx.define('NDEBUG', 1) 138 138 139 139 if ctx.env.CC_NAME != 'msvc': 140 140 # enable debug symbols and configure warnings 141 141 ctx.env.CFLAGS += ['-g', '-Wall', '-Wextra'] 142 142 if ctx.options.build_type == "release": 143 # set optimization level 143 # set optimization level 144 144 ctx.env.CFLAGS += ['-O2'] 145 145 else: … … 149 149 # configure warnings 150 150 ctx.env.CFLAGS += ['/W4', '/D_CRT_SECURE_NO_WARNINGS'] 151 # set optimization level and runtime libs 151 # set optimization level and runtime libs 152 152 if (ctx.options.build_type == "release"): 153 153 ctx.env.CFLAGS += ['/Ox'] … … 156 156 assert(ctx.options.build_type == "debug") 157 157 ctx.env.CFLAGS += ['/MDd'] 158 158 159 159 ctx.check_cc(lib='m', uselib_store='M', mandatory=False) 160 160
Note: See TracChangeset
for help on using the changeset viewer.