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