Changeset 58cffee


Ignore:
Timestamp:
Apr 23, 2016, 12:12:06 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:
6d7d52c
Parents:
0806cd2
Message:

tests/wscript_build, src/wscript_build: no -lm on win32/64

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/wscript_build

    r0806cd2 r58cffee  
    1313# build each source files
    1414source = ctx.path.ant_glob('*.c **/*.c')
     15lib = 'm' if ctx.env['DEST_OS'] not in ['win32', 'win64'] else None
    1516ctx(features = 'c',
    1617        source = source,
    1718        includes = ['.'],
    1819        uselib = uselib,
    19         lib = 'm',
     20        lib = lib,
    2021        target = 'lib_objects')
    2122
  • tests/wscript_build

    r0806cd2 r58cffee  
    11# vim:set syntax=python:
    22
     3lib = 'm' if ctx.env['DEST_OS'] not in ['win32', 'win64'] else None
     4
     5uselib = []
     6uselib += ['FFTW3', 'FFTW3F']
     7uselib += ['SAMPLERATE']
     8uselib += ['SNDFILE']
     9uselib += ['AVCODEC']
     10uselib += ['AVFORMAT']
     11uselib += ['AVRESAMPLE']
     12uselib += ['AVUTIL']
     13uselib += ['JACK']
     14uselib += ['BLAS']
     15
     16includes = ['../src', '.']
     17
    318for target_name in ctx.path.ant_glob('src/**/*.c'):
    4     uselib = []
    5     uselib += ['FFTW3', 'FFTW3F']
    6     uselib += ['SAMPLERATE']
    7     uselib += ['SNDFILE']
    8     uselib += ['AVCODEC']
    9     uselib += ['AVFORMAT']
    10     uselib += ['AVRESAMPLE']
    11     uselib += ['AVUTIL']
    12     uselib += ['JACK']
    13     uselib += ['BLAS']
    14     includes = ['../src', '.']
    1519    extra_source = []
    16 
    1720    bld(features = 'c cprogram test',
    18             lib = 'm',
     21            lib = lib,
    1922            uselib = uselib,
    2023            source = [target_name] + extra_source,
Note: See TracChangeset for help on using the changeset viewer.