Changeset 578d3a2


Ignore:
Timestamp:
Dec 24, 2016, 10:37:42 AM (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, sampler, yinfft+
Children:
fb6a0ff
Parents:
e79943b
Message:

wscript: remove trailing spaces

File:
1 edited

Legend:

Unmodified
Added
Removed
  • wscript

    re79943b r578d3a2  
    136136    else:
    137137        ctx.define('NDEBUG', 1)
    138    
     138
    139139    if ctx.env.CC_NAME != 'msvc':
    140140        # enable debug symbols and configure warnings
    141141        ctx.env.CFLAGS += ['-g', '-Wall', '-Wextra']
    142142        if ctx.options.build_type == "release":
    143             # set optimization level 
     143            # set optimization level
    144144            ctx.env.CFLAGS += ['-O2']
    145145    else:
     
    149149        # configure warnings
    150150        ctx.env.CFLAGS += ['/W4', '/D_CRT_SECURE_NO_WARNINGS']
    151         # set optimization level and runtime libs 
     151        # set optimization level and runtime libs
    152152        if (ctx.options.build_type == "release"):
    153153            ctx.env.CFLAGS += ['/Ox']
     
    156156            assert(ctx.options.build_type == "debug")
    157157            ctx.env.CFLAGS += ['/MDd']
    158        
     158
    159159    ctx.check_cc(lib='m', uselib_store='M', mandatory=False)
    160160
Note: See TracChangeset for help on using the changeset viewer.