[5c411dc] | 1 | #! /usr/bin/python |
---|
[110ac90] | 2 | # |
---|
[21ee709] | 3 | # usage: |
---|
[46b00690] | 4 | # $ python waf --help |
---|
| 5 | # |
---|
| 6 | # example: |
---|
| 7 | # $ ./waf distclean configure build |
---|
[21ee709] | 8 | # |
---|
[46b00690] | 9 | # Note: aubio uses the waf build system, which relies on Python. Provided you |
---|
| 10 | # have Python installed, you do *not* need to install anything to build aubio. |
---|
| 11 | # For more info about waf, see http://code.google.com/p/waf/ . |
---|
[000b090] | 12 | |
---|
[004b431] | 13 | import sys |
---|
| 14 | |
---|
[000b090] | 15 | APPNAME = 'aubio' |
---|
[5820107] | 16 | |
---|
[6b14351] | 17 | # source VERSION |
---|
[5820107] | 18 | for l in open('VERSION').readlines(): exec (l.strip()) |
---|
| 19 | |
---|
[6b14351] | 20 | VERSION = '.'.join ([str(x) for x in [ |
---|
| 21 | AUBIO_MAJOR_VERSION, |
---|
| 22 | AUBIO_MINOR_VERSION, |
---|
| 23 | AUBIO_PATCH_VERSION |
---|
| 24 | ]]) + AUBIO_VERSION_STATUS |
---|
[e565c649] | 25 | |
---|
[6b14351] | 26 | LIB_VERSION = '.'.join ([str(x) for x in [ |
---|
| 27 | LIBAUBIO_LT_CUR, |
---|
| 28 | LIBAUBIO_LT_REV, |
---|
| 29 | LIBAUBIO_LT_AGE]]) |
---|
[e565c649] | 30 | |
---|
[46378b3] | 31 | top = '.' |
---|
| 32 | out = 'build' |
---|
[000b090] | 33 | |
---|
[6b14351] | 34 | def add_option_enable_disable(ctx, name, default = None, |
---|
| 35 | help_str = None, help_disable_str = None): |
---|
[a93dab3] | 36 | if help_str == None: |
---|
| 37 | help_str = 'enable ' + name + ' support' |
---|
| 38 | if help_disable_str == None: |
---|
| 39 | help_disable_str = 'do not ' + help_str |
---|
| 40 | ctx.add_option('--enable-' + name, action = 'store_true', |
---|
| 41 | default = default, |
---|
| 42 | dest = 'enable_' + name.replace('-','_'), |
---|
| 43 | help = help_str) |
---|
| 44 | ctx.add_option('--disable-' + name, action = 'store_false', |
---|
| 45 | #default = default, |
---|
| 46 | dest = 'enable_' + name.replace('-','_'), |
---|
| 47 | help = help_disable_str ) |
---|
[3819aca] | 48 | |
---|
[d41bc4d] | 49 | def options(ctx): |
---|
[b4ce693] | 50 | ctx.add_option('--build-type', action = 'store', |
---|
| 51 | default = "release", |
---|
| 52 | choices = ('debug', 'release'), |
---|
| 53 | dest = 'build_type', |
---|
[fb6a0ff] | 54 | help = 'whether to compile with (--build-type=release) or without (--build-type=debug) '\ |
---|
[b4ce693] | 55 | ' compiler opimizations [default: release]') |
---|
[a93dab3] | 56 | add_option_enable_disable(ctx, 'fftw3f', default = False, |
---|
| 57 | help_str = 'compile with fftw3f instead of ooura (recommended)', |
---|
| 58 | help_disable_str = 'do not compile with fftw3f') |
---|
| 59 | add_option_enable_disable(ctx, 'fftw3', default = False, |
---|
| 60 | help_str = 'compile with fftw3 instead of ooura', |
---|
| 61 | help_disable_str = 'do not compile with fftw3') |
---|
| 62 | add_option_enable_disable(ctx, 'complex', default = False, |
---|
| 63 | help_str ='compile with C99 complex', |
---|
| 64 | help_disable_str = 'do not use C99 complex (default)' ) |
---|
| 65 | add_option_enable_disable(ctx, 'jack', default = None, |
---|
| 66 | help_str = 'compile with jack (auto)', |
---|
| 67 | help_disable_str = 'disable jack support') |
---|
| 68 | add_option_enable_disable(ctx, 'sndfile', default = None, |
---|
| 69 | help_str = 'compile with sndfile (auto)', |
---|
| 70 | help_disable_str = 'disable sndfile') |
---|
| 71 | add_option_enable_disable(ctx, 'avcodec', default = None, |
---|
| 72 | help_str = 'compile with libavcodec (auto)', |
---|
| 73 | help_disable_str = 'disable libavcodec') |
---|
| 74 | add_option_enable_disable(ctx, 'samplerate', default = None, |
---|
| 75 | help_str = 'compile with samplerate (auto)', |
---|
| 76 | help_disable_str = 'disable samplerate') |
---|
| 77 | add_option_enable_disable(ctx, 'memcpy', default = True, |
---|
| 78 | help_str = 'use memcpy hacks (default)', |
---|
| 79 | help_disable_str = 'do not use memcpy hacks') |
---|
| 80 | add_option_enable_disable(ctx, 'double', default = False, |
---|
| 81 | help_str = 'compile in double precision mode', |
---|
| 82 | help_disable_str = 'compile in single precision mode (default)') |
---|
[a3de4be] | 83 | add_option_enable_disable(ctx, 'fat', default = False, |
---|
| 84 | help_str = 'build fat binaries (darwin only)', |
---|
| 85 | help_disable_str = 'do not build fat binaries (default)') |
---|
[0309a22] | 86 | add_option_enable_disable(ctx, 'accelerate', default = None, |
---|
| 87 | help_str = 'use Accelerate framework (darwin only) (auto)', |
---|
| 88 | help_disable_str = 'do not use Accelerate framework') |
---|
[cc81763] | 89 | add_option_enable_disable(ctx, 'apple-audio', default = None, |
---|
| 90 | help_str = 'use CoreFoundation (darwin only) (auto)', |
---|
| 91 | help_disable_str = 'do not use CoreFoundation framework') |
---|
[f61ffb9] | 92 | add_option_enable_disable(ctx, 'atlas', default = False, |
---|
| 93 | help_str = 'use Atlas library (no)', |
---|
[f0ce36a1] | 94 | help_disable_str = 'do not use Atlas library') |
---|
[f9a543e] | 95 | add_option_enable_disable(ctx, 'wavread', default = True, |
---|
| 96 | help_str = 'compile with source_wavread (default)', |
---|
| 97 | help_disable_str = 'do not compile source_wavread') |
---|
| 98 | add_option_enable_disable(ctx, 'wavwrite', default = True, |
---|
| 99 | help_str = 'compile with source_wavwrite (default)', |
---|
| 100 | help_disable_str = 'do not compile source_wavwrite') |
---|
[a93dab3] | 101 | |
---|
[a33d406] | 102 | add_option_enable_disable(ctx, 'docs', default = None, |
---|
| 103 | help_str = 'build documentation (auto)', |
---|
| 104 | help_disable_str = 'do not build documentation') |
---|
| 105 | |
---|
[a93dab3] | 106 | ctx.add_option('--with-target-platform', type='string', |
---|
| 107 | help='set target platform for cross-compilation', dest='target_platform') |
---|
| 108 | |
---|
| 109 | ctx.load('compiler_c') |
---|
| 110 | ctx.load('waf_unit_test') |
---|
| 111 | ctx.load('gnu_dirs') |
---|
[000b090] | 112 | |
---|
[d41bc4d] | 113 | def configure(ctx): |
---|
[a93dab3] | 114 | from waflib import Options |
---|
| 115 | ctx.load('compiler_c') |
---|
| 116 | ctx.load('waf_unit_test') |
---|
| 117 | ctx.load('gnu_dirs') |
---|
[06dba46] | 118 | |
---|
[bef979a] | 119 | # check for common headers |
---|
| 120 | ctx.check(header_name='stdlib.h') |
---|
| 121 | ctx.check(header_name='stdio.h') |
---|
| 122 | ctx.check(header_name='math.h') |
---|
| 123 | ctx.check(header_name='string.h') |
---|
| 124 | ctx.check(header_name='limits.h') |
---|
[f334300] | 125 | ctx.check(header_name='stdarg.h') |
---|
[d746ef8] | 126 | ctx.check(header_name='getopt.h', mandatory = False) |
---|
[06cf47d] | 127 | ctx.check(header_name='unistd.h', mandatory = False) |
---|
[bef979a] | 128 | |
---|
[004b431] | 129 | target_platform = sys.platform |
---|
[a93dab3] | 130 | if ctx.options.target_platform: |
---|
| 131 | target_platform = ctx.options.target_platform |
---|
| 132 | ctx.env['DEST_OS'] = target_platform |
---|
| 133 | |
---|
[b4ce693] | 134 | if ctx.options.build_type == "debug": |
---|
| 135 | ctx.define('DEBUG', 1) |
---|
| 136 | else: |
---|
| 137 | ctx.define('NDEBUG', 1) |
---|
[578d3a2] | 138 | |
---|
[ae36035] | 139 | if ctx.env.CC_NAME != 'msvc': |
---|
[c04346d] | 140 | if ctx.options.build_type == "debug": |
---|
| 141 | # no optimization in debug mode |
---|
[a6ba5d9f] | 142 | ctx.env.prepend_value('CFLAGS', ['-O0']) |
---|
| 143 | else: |
---|
| 144 | # default to -O2 in release mode |
---|
| 145 | ctx.env.prepend_value('CFLAGS', ['-O2']) |
---|
| 146 | # enable debug symbols and configure warnings |
---|
| 147 | ctx.env.prepend_value('CFLAGS', ['-g', '-Wall', '-Wextra']) |
---|
[a341685] | 148 | else: |
---|
[b4ce693] | 149 | # enable debug symbols |
---|
| 150 | ctx.env.CFLAGS += ['/Z7', '/FS'] |
---|
| 151 | ctx.env.LINKFLAGS += ['/DEBUG', '/INCREMENTAL:NO'] |
---|
| 152 | # configure warnings |
---|
| 153 | ctx.env.CFLAGS += ['/W4', '/D_CRT_SECURE_NO_WARNINGS'] |
---|
[578d3a2] | 154 | # set optimization level and runtime libs |
---|
[b4ce693] | 155 | if (ctx.options.build_type == "release"): |
---|
| 156 | ctx.env.CFLAGS += ['/Ox'] |
---|
| 157 | ctx.env.CFLAGS += ['/MD'] |
---|
| 158 | else: |
---|
| 159 | assert(ctx.options.build_type == "debug") |
---|
| 160 | ctx.env.CFLAGS += ['/MDd'] |
---|
[578d3a2] | 161 | |
---|
[70a304e] | 162 | ctx.check_cc(lib='m', uselib_store='M', mandatory=False) |
---|
| 163 | |
---|
[06dba46] | 164 | if target_platform not in ['win32', 'win64']: |
---|
| 165 | ctx.env.CFLAGS += ['-fPIC'] |
---|
| 166 | else: |
---|
| 167 | ctx.define('HAVE_WIN_HACKS', 1) |
---|
| 168 | ctx.env['cshlib_PATTERN'] = 'lib%s.dll' |
---|
[a93dab3] | 169 | |
---|
[a3de4be] | 170 | if target_platform == 'darwin' and ctx.options.enable_fat: |
---|
[a93dab3] | 171 | ctx.env.CFLAGS += ['-arch', 'i386', '-arch', 'x86_64'] |
---|
| 172 | ctx.env.LINKFLAGS += ['-arch', 'i386', '-arch', 'x86_64'] |
---|
[da1709f] | 173 | MINSDKVER="10.4" |
---|
| 174 | ctx.env.CFLAGS += [ '-mmacosx-version-min=' + MINSDKVER ] |
---|
| 175 | ctx.env.LINKFLAGS += [ '-mmacosx-version-min=' + MINSDKVER ] |
---|
[9209c79] | 176 | |
---|
| 177 | if target_platform in [ 'darwin', 'ios', 'iosimulator']: |
---|
[cc81763] | 178 | if (ctx.options.enable_apple_audio != False): |
---|
| 179 | ctx.env.FRAMEWORK += ['CoreFoundation', 'AudioToolbox'] |
---|
| 180 | ctx.define('HAVE_SOURCE_APPLE_AUDIO', 1) |
---|
| 181 | ctx.define('HAVE_SINK_APPLE_AUDIO', 1) |
---|
[f61ffb9] | 182 | ctx.msg('Checking for AudioToolbox.framework', 'yes') |
---|
| 183 | else: |
---|
| 184 | ctx.msg('Checking for AudioToolbox.framework', 'no (disabled)', color = 'YELLOW') |
---|
[0309a22] | 185 | if (ctx.options.enable_accelerate != False): |
---|
| 186 | ctx.define('HAVE_ACCELERATE', 1) |
---|
| 187 | ctx.env.FRAMEWORK += ['Accelerate'] |
---|
[f61ffb9] | 188 | ctx.msg('Checking for Accelerate framework', 'yes') |
---|
| 189 | else: |
---|
[488381e] | 190 | ctx.msg('Checking for Accelerate framework', 'no (disabled)', color = 'YELLOW') |
---|
[a93dab3] | 191 | |
---|
| 192 | if target_platform in [ 'ios', 'iosimulator' ]: |
---|
| 193 | MINSDKVER="6.1" |
---|
| 194 | ctx.env.CFLAGS += ['-std=c99'] |
---|
[536bf70] | 195 | if (ctx.options.enable_apple_audio != False): |
---|
[cc81763] | 196 | ctx.define('HAVE_AUDIO_UNIT', 1) |
---|
| 197 | #ctx.env.FRAMEWORK += ['CoreFoundation', 'AudioToolbox'] |
---|
[a93dab3] | 198 | if target_platform == 'ios': |
---|
| 199 | DEVROOT = "/Applications/Xcode.app/Contents" |
---|
| 200 | DEVROOT += "/Developer/Platforms/iPhoneOS.platform/Developer" |
---|
[e11ce489] | 201 | SDKROOT = "%(DEVROOT)s/SDKs/iPhoneOS.sdk" % locals() |
---|
[94b16497] | 202 | ctx.env.CFLAGS += [ '-fembed-bitcode' ] |
---|
[7aa4aaa] | 203 | ctx.env.CFLAGS += [ '-arch', 'arm64' ] |
---|
[a93dab3] | 204 | ctx.env.CFLAGS += [ '-arch', 'armv7' ] |
---|
| 205 | ctx.env.CFLAGS += [ '-arch', 'armv7s' ] |
---|
[7aa4aaa] | 206 | ctx.env.LINKFLAGS += [ '-arch', 'arm64' ] |
---|
[a93dab3] | 207 | ctx.env.LINKFLAGS += ['-arch', 'armv7'] |
---|
| 208 | ctx.env.LINKFLAGS += ['-arch', 'armv7s'] |
---|
| 209 | ctx.env.CFLAGS += [ '-miphoneos-version-min=' + MINSDKVER ] |
---|
| 210 | ctx.env.LINKFLAGS += [ '-miphoneos-version-min=' + MINSDKVER ] |
---|
| 211 | else: |
---|
| 212 | DEVROOT = "/Applications/Xcode.app/Contents" |
---|
| 213 | DEVROOT += "/Developer/Platforms/iPhoneSimulator.platform/Developer" |
---|
[e11ce489] | 214 | SDKROOT = "%(DEVROOT)s/SDKs/iPhoneSimulator.sdk" % locals() |
---|
[a93dab3] | 215 | ctx.env.CFLAGS += [ '-arch', 'i386' ] |
---|
| 216 | ctx.env.CFLAGS += [ '-arch', 'x86_64' ] |
---|
| 217 | ctx.env.LINKFLAGS += ['-arch', 'i386'] |
---|
| 218 | ctx.env.LINKFLAGS += ['-arch', 'x86_64'] |
---|
| 219 | ctx.env.CFLAGS += [ '-mios-simulator-version-min=' + MINSDKVER ] |
---|
| 220 | ctx.env.LINKFLAGS += [ '-mios-simulator-version-min=' + MINSDKVER ] |
---|
| 221 | ctx.env.CFLAGS += [ '-isysroot' , SDKROOT] |
---|
| 222 | ctx.env.LINKFLAGS += [ '-isysroot' , SDKROOT] |
---|
| 223 | |
---|
[fb5838a] | 224 | if target_platform == 'emscripten': |
---|
| 225 | import os.path |
---|
| 226 | ctx.env.CFLAGS += [ '-I' + os.path.join(os.environ['EMSCRIPTEN'], 'system', 'include') ] |
---|
| 227 | ctx.env.CFLAGS += ['-Oz'] |
---|
| 228 | ctx.env.cprogram_PATTERN = "%s.js" |
---|
| 229 | if (ctx.options.enable_atlas != True): |
---|
| 230 | ctx.options.enable_atlas = False |
---|
| 231 | |
---|
[a93dab3] | 232 | # check support for C99 __VA_ARGS__ macros |
---|
| 233 | check_c99_varargs = ''' |
---|
[0318cc1] | 234 | #include <stdio.h> |
---|
| 235 | #define AUBIO_ERR(...) fprintf(stderr, __VA_ARGS__) |
---|
| 236 | ''' |
---|
[a93dab3] | 237 | |
---|
| 238 | if ctx.check_cc(fragment = check_c99_varargs, |
---|
| 239 | type='cstlib', |
---|
[413d4bf] | 240 | msg = 'Checking for C99 __VA_ARGS__ macro', |
---|
| 241 | mandatory = False): |
---|
[a93dab3] | 242 | ctx.define('HAVE_C99_VARARGS_MACROS', 1) |
---|
| 243 | |
---|
[06c6d7d] | 244 | # show a message about enable_double status |
---|
[a93dab3] | 245 | if (ctx.options.enable_double == True): |
---|
[06c6d7d] | 246 | ctx.msg('Checking for size of smpl_t', 'double') |
---|
| 247 | ctx.msg('Checking for size of lsmp_t', 'long double') |
---|
[a93dab3] | 248 | else: |
---|
[06c6d7d] | 249 | ctx.msg('Checking for size of smpl_t', 'float') |
---|
| 250 | ctx.msg('Checking for size of lsmp_t', 'double') |
---|
[a93dab3] | 251 | |
---|
| 252 | # optionally use complex.h |
---|
| 253 | if (ctx.options.enable_complex == True): |
---|
| 254 | ctx.check(header_name='complex.h') |
---|
[06c6d7d] | 255 | else: |
---|
| 256 | ctx.msg('Checking if complex.h is enabled', 'no') |
---|
[a93dab3] | 257 | |
---|
| 258 | # check for fftw3 |
---|
| 259 | if (ctx.options.enable_fftw3 != False or ctx.options.enable_fftw3f != False): |
---|
| 260 | # one of fftwf or fftw3f |
---|
| 261 | if (ctx.options.enable_fftw3f != False): |
---|
| 262 | ctx.check_cfg(package = 'fftw3f', atleast_version = '3.0.0', |
---|
[795fcd9] | 263 | args = '--cflags --libs', |
---|
| 264 | mandatory = ctx.options.enable_fftw3f) |
---|
[a93dab3] | 265 | if (ctx.options.enable_double == True): |
---|
[795fcd9] | 266 | ctx.msg('Warning', |
---|
| 267 | 'fftw3f enabled, but compiling in double precision!') |
---|
[a93dab3] | 268 | else: |
---|
[795fcd9] | 269 | # fftw3f disabled, take most sensible one according to |
---|
| 270 | # enable_double |
---|
[a93dab3] | 271 | if (ctx.options.enable_double == True): |
---|
| 272 | ctx.check_cfg(package = 'fftw3', atleast_version = '3.0.0', |
---|
[795fcd9] | 273 | args = '--cflags --libs', mandatory = |
---|
| 274 | ctx.options.enable_fftw3) |
---|
[a93dab3] | 275 | else: |
---|
| 276 | ctx.check_cfg(package = 'fftw3f', atleast_version = '3.0.0', |
---|
[795fcd9] | 277 | args = '--cflags --libs', |
---|
| 278 | mandatory = ctx.options.enable_fftw3) |
---|
[a93dab3] | 279 | ctx.define('HAVE_FFTW3', 1) |
---|
| 280 | |
---|
| 281 | # fftw not enabled, use vDSP or ooura |
---|
| 282 | if 'HAVE_FFTW3F' in ctx.env.define_key: |
---|
| 283 | ctx.msg('Checking for FFT implementation', 'fftw3f') |
---|
| 284 | elif 'HAVE_FFTW3' in ctx.env.define_key: |
---|
| 285 | ctx.msg('Checking for FFT implementation', 'fftw3') |
---|
| 286 | elif 'HAVE_ACCELERATE' in ctx.env.define_key: |
---|
| 287 | ctx.msg('Checking for FFT implementation', 'vDSP') |
---|
[36f954a] | 288 | else: |
---|
[a93dab3] | 289 | ctx.msg('Checking for FFT implementation', 'ooura') |
---|
| 290 | |
---|
| 291 | # check for libsndfile |
---|
| 292 | if (ctx.options.enable_sndfile != False): |
---|
| 293 | ctx.check_cfg(package = 'sndfile', atleast_version = '1.0.4', |
---|
[795fcd9] | 294 | args = '--cflags --libs', |
---|
| 295 | mandatory = ctx.options.enable_sndfile) |
---|
[a93dab3] | 296 | |
---|
| 297 | # check for libsamplerate |
---|
[8be88e7] | 298 | if (ctx.options.enable_double): |
---|
| 299 | if (ctx.options.enable_samplerate): |
---|
| 300 | ctx.fatal("Could not compile aubio in double precision mode with libsamplerate") |
---|
| 301 | else: |
---|
| 302 | ctx.options.enable_samplerate = False |
---|
| 303 | ctx.msg('Checking if using samplerate', 'no (disabled in double precision mode)', |
---|
| 304 | color = 'YELLOW') |
---|
[a93dab3] | 305 | if (ctx.options.enable_samplerate != False): |
---|
| 306 | ctx.check_cfg(package = 'samplerate', atleast_version = '0.0.15', |
---|
[795fcd9] | 307 | args = '--cflags --libs', |
---|
| 308 | mandatory = ctx.options.enable_samplerate) |
---|
[a93dab3] | 309 | |
---|
| 310 | # check for jack |
---|
| 311 | if (ctx.options.enable_jack != False): |
---|
[eb99982] | 312 | ctx.check_cfg(package = 'jack', |
---|
[795fcd9] | 313 | args = '--cflags --libs', |
---|
| 314 | mandatory = ctx.options.enable_jack) |
---|
[a93dab3] | 315 | |
---|
| 316 | # check for libav |
---|
| 317 | if (ctx.options.enable_avcodec != False): |
---|
| 318 | ctx.check_cfg(package = 'libavcodec', atleast_version = '54.35.0', |
---|
[795fcd9] | 319 | args = '--cflags --libs', uselib_store = 'AVCODEC', |
---|
| 320 | mandatory = ctx.options.enable_avcodec) |
---|
[a93dab3] | 321 | ctx.check_cfg(package = 'libavformat', atleast_version = '52.3.0', |
---|
[795fcd9] | 322 | args = '--cflags --libs', uselib_store = 'AVFORMAT', |
---|
| 323 | mandatory = ctx.options.enable_avcodec) |
---|
[a93dab3] | 324 | ctx.check_cfg(package = 'libavutil', atleast_version = '52.3.0', |
---|
[795fcd9] | 325 | args = '--cflags --libs', uselib_store = 'AVUTIL', |
---|
| 326 | mandatory = ctx.options.enable_avcodec) |
---|
[d82e7a4] | 327 | ctx.check_cfg(package = 'libswresample', atleast_version = '2.3.0', |
---|
| 328 | args = '--cflags --libs', uselib_store = 'SWRESAMPLE', |
---|
| 329 | mandatory = False) |
---|
| 330 | if 'HAVE_SWRESAMPLE' not in ctx.env: |
---|
| 331 | ctx.check_cfg(package = 'libavresample', atleast_version = '1.0.1', |
---|
| 332 | args = '--cflags --libs', uselib_store = 'AVRESAMPLE', |
---|
| 333 | mandatory = False) |
---|
| 334 | |
---|
| 335 | msg_check = 'Checking for all libav libraries' |
---|
| 336 | if 'HAVE_AVCODEC' not in ctx.env: |
---|
| 337 | ctx.msg(msg_check, 'not found (missing avcodec)', color = 'YELLOW') |
---|
| 338 | elif 'HAVE_AVFORMAT' not in ctx.env: |
---|
| 339 | ctx.msg(msg_check, 'not found (missing avformat)', color = 'YELLOW') |
---|
| 340 | elif 'HAVE_AVUTIL' not in ctx.env: |
---|
| 341 | ctx.msg(msg_check, 'not found (missing avutil)', color = 'YELLOW') |
---|
| 342 | elif 'HAVE_SWRESAMPLE' not in ctx.env and 'HAVE_AVRESAMPLE' not in ctx.env: |
---|
[c3b3b84] | 343 | resample_missing = 'not found (avresample or swresample required)' |
---|
| 344 | ctx.msg(msg_check, resample_missing, color = 'YELLOW') |
---|
[549928e] | 345 | else: |
---|
[d82e7a4] | 346 | ctx.msg(msg_check, 'yes') |
---|
| 347 | if 'HAVE_SWRESAMPLE' in ctx.env: |
---|
| 348 | ctx.define('HAVE_SWRESAMPLE', 1) |
---|
| 349 | elif 'HAVE_AVRESAMPLE' in ctx.env: |
---|
| 350 | ctx.define('HAVE_AVRESAMPLE', 1) |
---|
| 351 | ctx.define('HAVE_LIBAV', 1) |
---|
[a93dab3] | 352 | |
---|
[f9a543e] | 353 | if (ctx.options.enable_wavread != False): |
---|
| 354 | ctx.define('HAVE_WAVREAD', 1) |
---|
| 355 | ctx.msg('Checking if using source_wavread', ctx.options.enable_wavread and 'yes' or 'no') |
---|
| 356 | if (ctx.options.enable_wavwrite!= False): |
---|
| 357 | ctx.define('HAVE_WAVWRITE', 1) |
---|
| 358 | ctx.msg('Checking if using sink_wavwrite', ctx.options.enable_wavwrite and 'yes' or 'no') |
---|
[5158c22] | 359 | |
---|
[f0ce36a1] | 360 | # use ATLAS |
---|
| 361 | if (ctx.options.enable_atlas != False): |
---|
| 362 | ctx.check(header_name = 'atlas/cblas.h', mandatory = ctx.options.enable_atlas) |
---|
| 363 | #ctx.check(lib = 'lapack', uselib_store = 'LAPACK', mandatory = ctx.options.enable_atlas) |
---|
| 364 | ctx.check(lib = 'cblas', uselib_store = 'BLAS', mandatory = ctx.options.enable_atlas) |
---|
| 365 | |
---|
[a93dab3] | 366 | # use memcpy hacks |
---|
| 367 | if (ctx.options.enable_memcpy == True): |
---|
| 368 | ctx.define('HAVE_MEMCPY_HACKS', 1) |
---|
| 369 | |
---|
| 370 | # write configuration header |
---|
| 371 | ctx.write_config_header('src/config.h') |
---|
| 372 | |
---|
[06c6d7d] | 373 | # the following defines will be passed as arguments to the compiler |
---|
| 374 | # instead of being written to src/config.h |
---|
[1910fed] | 375 | ctx.define('HAVE_CONFIG_H', 1) |
---|
[06c6d7d] | 376 | |
---|
[a93dab3] | 377 | # add some defines used in examples |
---|
| 378 | ctx.define('AUBIO_PREFIX', ctx.env['PREFIX']) |
---|
| 379 | ctx.define('PACKAGE', APPNAME) |
---|
| 380 | |
---|
[06c6d7d] | 381 | # double precision mode |
---|
| 382 | if (ctx.options.enable_double == True): |
---|
| 383 | ctx.define('HAVE_AUBIO_DOUBLE', 1) |
---|
| 384 | |
---|
[a33d406] | 385 | if (ctx.options.enable_docs != False): |
---|
| 386 | # check if txt2man is installed, optional |
---|
| 387 | try: |
---|
| 388 | ctx.find_program('txt2man', var='TXT2MAN') |
---|
| 389 | except ctx.errors.ConfigurationError: |
---|
| 390 | ctx.to_log('txt2man was not found (ignoring)') |
---|
[000b090] | 391 | |
---|
[a33d406] | 392 | # check if doxygen is installed, optional |
---|
| 393 | try: |
---|
| 394 | ctx.find_program('doxygen', var='DOXYGEN') |
---|
| 395 | except ctx.errors.ConfigurationError: |
---|
| 396 | ctx.to_log('doxygen was not found (ignoring)') |
---|
[52a25e5] | 397 | |
---|
[7800335] | 398 | # check if sphinx-build is installed, optional |
---|
| 399 | try: |
---|
| 400 | ctx.find_program('sphinx-build', var='SPHINX') |
---|
| 401 | except ctx.errors.ConfigurationError: |
---|
| 402 | ctx.to_log('sphinx-build was not found (ignoring)') |
---|
| 403 | |
---|
[6ed0f4e] | 404 | def build(bld): |
---|
[985a5d1] | 405 | bld.env['VERSION'] = VERSION |
---|
| 406 | bld.env['LIB_VERSION'] = LIB_VERSION |
---|
| 407 | |
---|
[7b38f3f] | 408 | # main source |
---|
[985a5d1] | 409 | bld.recurse('src') |
---|
[7b38f3f] | 410 | |
---|
| 411 | # add sub directories |
---|
[985a5d1] | 412 | if bld.env['DEST_OS'] not in ['ios', 'iosimulator', 'android']: |
---|
| 413 | bld.recurse('examples') |
---|
| 414 | bld.recurse('tests') |
---|
| 415 | |
---|
[7b38f3f] | 416 | # pkg-config template |
---|
[985a5d1] | 417 | bld( source = 'aubio.pc.in' ) |
---|
| 418 | |
---|
[7b38f3f] | 419 | # documentation |
---|
| 420 | txt2man(bld) |
---|
| 421 | doxygen(bld) |
---|
| 422 | sphinx(bld) |
---|
| 423 | |
---|
| 424 | def txt2man(bld): |
---|
[52a25e5] | 425 | # build manpages from txt files using txt2man |
---|
[403e9dd] | 426 | if bld.env['TXT2MAN']: |
---|
[985a5d1] | 427 | from waflib import TaskGen |
---|
| 428 | if 'MANDIR' not in bld.env: |
---|
[641e533] | 429 | bld.env['MANDIR'] = bld.env['DATAROOTDIR'] + '/man' |
---|
[e3b77e8] | 430 | bld.env.VERSION = VERSION |
---|
[403e9dd] | 431 | rule_str = '${TXT2MAN} -t `basename ${TGT} | cut -f 1 -d . | tr a-z A-Z`' |
---|
| 432 | rule_str += ' -r ${PACKAGE}\\ ${VERSION} -P ${PACKAGE}' |
---|
| 433 | rule_str += ' -v ${PACKAGE}\\ User\\\'s\\ manual' |
---|
| 434 | rule_str += ' -s 1 ${SRC} > ${TGT}' |
---|
[985a5d1] | 435 | TaskGen.declare_chain( |
---|
[403e9dd] | 436 | name = 'txt2man', |
---|
| 437 | rule = rule_str, |
---|
| 438 | ext_in = '.txt', |
---|
[985a5d1] | 439 | ext_out = '.1', |
---|
| 440 | reentrant = False, |
---|
| 441 | install_path = '${MANDIR}/man1', |
---|
| 442 | ) |
---|
[403e9dd] | 443 | bld( source = bld.path.ant_glob('doc/*.txt') ) |
---|
[985a5d1] | 444 | |
---|
[7b38f3f] | 445 | def doxygen(bld): |
---|
[52a25e5] | 446 | # build documentation from source files using doxygen |
---|
| 447 | if bld.env['DOXYGEN']: |
---|
| 448 | bld( name = 'doxygen', rule = 'doxygen ${SRC} > /dev/null', |
---|
| 449 | source = 'doc/web.cfg', |
---|
[41dd34e] | 450 | target = '../doc/web/html/index.html', |
---|
[7f35041] | 451 | cwd = 'doc') |
---|
[641e533] | 452 | bld.install_files( '${DATAROOTDIR}' + '/doc/libaubio-doc', |
---|
[52a25e5] | 453 | bld.path.ant_glob('doc/web/html/**'), |
---|
| 454 | cwd = bld.path.find_dir ('doc/web'), |
---|
| 455 | relative_trick = True) |
---|
[7800335] | 456 | |
---|
[7b38f3f] | 457 | def sphinx(bld): |
---|
[7800335] | 458 | # build documentation from source files using sphinx-build |
---|
[5a19f33] | 459 | # note: build in ../doc/_build/html, otherwise waf wont install unsigned files |
---|
[7800335] | 460 | if bld.env['SPHINX']: |
---|
[e3b77e8] | 461 | bld.env.VERSION = VERSION |
---|
[5a19f33] | 462 | bld( name = 'sphinx', |
---|
[e3b77e8] | 463 | rule = '${SPHINX} -b html -D release=${VERSION} -D version=${VERSION} -a -q `dirname ${SRC}` `dirname ${TGT}`', |
---|
[7b38f3f] | 464 | source = 'doc/conf.py', |
---|
[5a19f33] | 465 | target = '../doc/_build/html/index.html') |
---|
[641e533] | 466 | bld.install_files( '${DATAROOTDIR}' + '/doc/libaubio-doc/sphinx', |
---|
[7800335] | 467 | bld.path.ant_glob('doc/_build/html/**'), |
---|
[5a19f33] | 468 | cwd = bld.path.find_dir('doc/_build/html'), |
---|
[7800335] | 469 | relative_trick = True) |
---|
[50d56cc] | 470 | |
---|
[7b38f3f] | 471 | # register the previous rules as build rules |
---|
| 472 | from waflib.Build import BuildContext |
---|
| 473 | |
---|
| 474 | class build_txt2man(BuildContext): |
---|
| 475 | cmd = 'txt2man' |
---|
| 476 | fun = 'txt2man' |
---|
| 477 | |
---|
| 478 | class build_manpages(BuildContext): |
---|
| 479 | cmd = 'manpages' |
---|
| 480 | fun = 'txt2man' |
---|
| 481 | |
---|
| 482 | class build_sphinx(BuildContext): |
---|
| 483 | cmd = 'sphinx' |
---|
| 484 | fun = 'sphinx' |
---|
| 485 | |
---|
| 486 | class build_doxygen(BuildContext): |
---|
| 487 | cmd = 'doxygen' |
---|
| 488 | fun = 'doxygen' |
---|
| 489 | |
---|
[30250de] | 490 | def shutdown(bld): |
---|
[985a5d1] | 491 | from waflib import Logs |
---|
| 492 | if bld.options.target_platform in ['ios', 'iosimulator']: |
---|
| 493 | msg ='building for %s, contact the author for a commercial license' % bld.options.target_platform |
---|
| 494 | Logs.pprint('RED', msg) |
---|
| 495 | msg =' Paul Brossier <piem@aubio.org>' |
---|
| 496 | Logs.pprint('RED', msg) |
---|
[b4d1ba1] | 497 | |
---|
| 498 | def dist(ctx): |
---|
[3388e1a] | 499 | ctx.excl = ' **/.waf* **/*~ **/*.pyc **/*.swp **/*.swo **/*.swn **/.lock-w* **/.git*' |
---|
[b4d1ba1] | 500 | ctx.excl += ' **/build/*' |
---|
[99d8cbb] | 501 | ctx.excl += ' doc/_build' |
---|
| 502 | ctx.excl += ' python/demos_*' |
---|
[22dd9dc] | 503 | ctx.excl += ' **/python/gen **/python/build **/python/dist' |
---|
[981e7082] | 504 | ctx.excl += ' **/python/ext/config.h' |
---|
[99d8cbb] | 505 | ctx.excl += ' **/python/lib/aubio/_aubio.so' |
---|
| 506 | ctx.excl += ' **.egg-info' |
---|
[22dd9dc] | 507 | ctx.excl += ' **/**.zip **/**.tar.bz2' |
---|
[7b38f3f] | 508 | ctx.excl += ' **.tar.bz2' |
---|
[a93dab3] | 509 | ctx.excl += ' **/doc/full/* **/doc/web/*' |
---|
[e57a7d4] | 510 | ctx.excl += ' **/doc/full.cfg' |
---|
[b4d1ba1] | 511 | ctx.excl += ' **/python/*.db' |
---|
| 512 | ctx.excl += ' **/python.old/*' |
---|
[981e7082] | 513 | ctx.excl += ' **/python/*/*.old' |
---|
[172b1fe] | 514 | ctx.excl += ' **/python/tests/sounds' |
---|
[7b2d740] | 515 | ctx.excl += ' **/**.asc' |
---|
[5e544f1] | 516 | ctx.excl += ' **/dist*' |
---|
[73aac2a] | 517 | ctx.excl += ' **/.DS_Store' |
---|
| 518 | ctx.excl += ' **/.travis.yml' |
---|
[5e544f1] | 519 | ctx.excl += ' **/.landscape.yml' |
---|
| 520 | ctx.excl += ' **/.appveyor.yml' |
---|