- Timestamp:
- Dec 25, 2016, 1:24:41 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:
- e3b77e8
- Parents:
- c04346d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
wscript
rc04346d ra6ba5d9f 138 138 139 139 if ctx.env.CC_NAME != 'msvc': 140 # enable debug symbols and configure warnings141 ctx.env.CFLAGS += ['-g', '-Wall', '-Wextra']142 140 if ctx.options.build_type == "debug": 143 141 # no optimization in debug mode 144 ctx.env.CFLAGS += ['-O0'] 142 ctx.env.prepend_value('CFLAGS', ['-O0']) 143 else: 144 # default to -O2 in release mode 145 ctx.env.prepend_value('CFLAGS', ['-O2']) 146 # enable debug symbols and configure warnings 147 ctx.env.prepend_value('CFLAGS', ['-g', '-Wall', '-Wextra']) 145 148 else: 146 149 # enable debug symbols
Note: See TracChangeset
for help on using the changeset viewer.