Changeset 3d30b90
- Timestamp:
- Sep 6, 2015, 10:48:24 AM (9 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
- Children:
- 34e505f
- Parents:
- 695e171 (diff), f0ce36a1 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
examples/wscript_build
r695e171 r3d30b90 10 10 uselib += ['AVUTIL'] 11 11 uselib += ['JACK'] 12 uselib += ['BLAS'] 12 13 13 14 utils_source = ['utils.c', 'jackio.c'] -
src/wscript_build
r695e171 r3d30b90 9 9 uselib += ['AVRESAMPLE'] 10 10 uselib += ['AVUTIL'] 11 uselib += ['BLAS'] 11 12 12 13 # build each source files -
tests/wscript_build
r695e171 r3d30b90 11 11 uselib += ['AVUTIL'] 12 12 uselib += ['JACK'] 13 uselib += ['BLAS'] 13 14 includes = ['../src', '.'] 14 15 extra_source = [] -
wscript
r695e171 r3d30b90 82 82 help_str = 'use CoreFoundation (darwin only) (auto)', 83 83 help_disable_str = 'do not use CoreFoundation framework') 84 add_option_enable_disable(ctx, 'atlas', default = None, 85 help_str = 'use Atlas library (auto)', 86 help_disable_str = 'do not use Atlas library') 84 87 85 88 ctx.add_option('--with-target-platform', type='string', … … 260 263 ctx.define('HAVE_WAVWRITE', 1) 261 264 265 # use ATLAS 266 if (ctx.options.enable_atlas != False): 267 ctx.check(header_name = 'atlas/cblas.h', mandatory = ctx.options.enable_atlas) 268 #ctx.check(lib = 'lapack', uselib_store = 'LAPACK', mandatory = ctx.options.enable_atlas) 269 ctx.check(lib = 'cblas', uselib_store = 'BLAS', mandatory = ctx.options.enable_atlas) 270 262 271 # use memcpy hacks 263 272 if (ctx.options.enable_memcpy == True):
Note: See TracChangeset
for help on using the changeset viewer.