Changeset bfbfafa for src/wscript_build


Ignore:
Timestamp:
Oct 3, 2017, 10:31:12 PM (7 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master
Children:
2e5c52e
Parents:
7b7a58e (diff), 25db68c (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.
Message:

Merge branch 'master' into dct

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/wscript_build

    r7b7a58e rbfbfafa  
    44uselib += ['M']
    55uselib += ['FFTW3', 'FFTW3F']
     6uselib += ['INTEL_IPP']
    67uselib += ['SAMPLERATE']
    78uselib += ['SNDFILE']
     
    2526    build_features = ['cstlib', 'cshlib']
    2627elif ctx.env['DEST_OS'] in ['win32', 'win64']:
    27     build_features = ['cstlib', 'cshlib']
     28    build_features = ['cstlib', 'cshlib gensyms']
    2829elif ctx.env['DEST_OS'] in ['emscripten']:
    2930    build_features = ['cstlib','cshlib']
     
    3738# also install static lib
    3839from waflib.Tools.c import cstlib
    39 from waflib.Tools.fc import fcstlib
    40 fcstlib.inst_to = cstlib.inst_to = '${LIBDIR}'
     40cstlib.inst_to = '${LIBDIR}'
    4141
    4242for target in build_features:
     
    4444            use = uselib + ['lib_objects'],
    4545            target = 'aubio',
     46            export_symbols_regex=r'(?:.*aubio|fvec|lvec|cvec|fmat|new|del)_.*',
    4647            vnum = ctx.env['LIB_VERSION'])
    4748
Note: See TracChangeset for help on using the changeset viewer.