Changeset 6d7d52c for src/wscript_build


Ignore:
Timestamp:
Apr 23, 2016, 12:34:13 AM (8 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, pitchshift, sampler, timestretch, yinfft+
Children:
a9ec06f
Parents:
58cffee
Message:

src/wscript_build: only no -lm if compiler is CL.exe

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/wscript_build

    r58cffee r6d7d52c  
    1313# build each source files
    1414source = ctx.path.ant_glob('*.c **/*.c')
    15 lib = 'm' if ctx.env['DEST_OS'] not in ['win32', 'win64'] else None
     15lib = 'm' if 'CL.exe' not in ctx.env.CC[0] else None
    1616ctx(features = 'c',
    1717        source = source,
Note: See TracChangeset for help on using the changeset viewer.