Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/wscript_build

    r18ec142 r379ef6c  
    2626    build_features = ['cstlib', 'cshlib']
    2727elif ctx.env['DEST_OS'] in ['win32', 'win64']:
    28     build_features = ['cstlib', 'cshlib gensyms']
     28    build_features = ['cstlib', 'cshlib']
    2929elif ctx.env['DEST_OS'] in ['emscripten']:
    3030    build_features = ['cstlib','cshlib']
     
    3838# also install static lib
    3939from waflib.Tools.c import cstlib
    40 cstlib.inst_to = '${LIBDIR}'
     40from waflib.Tools.fc import fcstlib
     41fcstlib.inst_to = cstlib.inst_to = '${LIBDIR}'
    4142
    4243for target in build_features:
     
    4445            use = uselib + ['lib_objects'],
    4546            target = 'aubio',
    46             export_symbols_regex=r'(?:.*aubio|fvec|lvec|cvec|fmat|new|del)_.*',
    4747            vnum = ctx.env['LIB_VERSION'])
    4848
Note: See TracChangeset for help on using the changeset viewer.