source: wscript @ bd183b3

feature/cnnfeature/crepefix/ffmpeg5
Last change on this file since bd183b3 was e625579, checked in by Paul Brossier <piem@piem.org>, 5 years ago

[waf] add rubberband to nodeps list

  • Property mode set to 100644
File size: 28.0 KB
RevLine 
[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]13import sys
14
[000b090]15APPNAME = 'aubio'
[5820107]16
[b991cc1]17from this_version import *
[5820107]18
[255c4c8]19VERSION = get_aubio_version()
20LIB_VERSION = get_libaubio_version()
[e565c649]21
[46378b3]22top = '.'
23out = 'build'
[000b090]24
[6b14351]25def 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]40def options(ctx):
[b4ce693]41    ctx.add_option('--build-type', action = 'store',
42            default = "release",
43            choices = ('debug', 'release'),
44            dest = 'build_type',
[19237a7]45            help = 'whether to compile with (--build-type=release)' \
46                    ' or without (--build-type=debug)' \
47                    ' compiler opimizations [default: release]')
[f862b85]48    ctx.add_option('--debug', action = 'store_const',
49            dest = 'build_type', const = 'debug',
50            help = 'build in debug mode (see --build-type)')
[0cd3720]51    ctx.add_option('--nodeps', action = 'store_const',
52            dest = 'nodeps', const = 'debug',
53            help = 'build with no external dependencies')
[a93dab3]54    add_option_enable_disable(ctx, 'fftw3f', default = False,
55            help_str = 'compile with fftw3f instead of ooura (recommended)',
56            help_disable_str = 'do not compile with fftw3f')
57    add_option_enable_disable(ctx, 'fftw3', default = False,
58            help_str = 'compile with fftw3 instead of ooura',
59            help_disable_str = 'do not compile with fftw3')
[799d992]60    add_option_enable_disable(ctx, 'intelipp', default = False,
[986131d]61            help_str = 'use Intel IPP libraries (auto)',
62            help_disable_str = 'do not use Intel IPP libraries')
[a93dab3]63    add_option_enable_disable(ctx, 'complex', default = False,
64            help_str ='compile with C99 complex',
65            help_disable_str = 'do not use C99 complex (default)' )
66    add_option_enable_disable(ctx, 'jack', default = None,
67            help_str = 'compile with jack (auto)',
68            help_disable_str = 'disable jack support')
69    add_option_enable_disable(ctx, 'sndfile', default = None,
70            help_str = 'compile with sndfile (auto)',
71            help_disable_str = 'disable sndfile')
72    add_option_enable_disable(ctx, 'avcodec', default = None,
73            help_str = 'compile with libavcodec (auto)',
74            help_disable_str = 'disable libavcodec')
75    add_option_enable_disable(ctx, 'samplerate', default = None,
76            help_str = 'compile with samplerate (auto)',
77            help_disable_str = 'disable samplerate')
[d9d1010]78    add_option_enable_disable(ctx, 'rubberband', default = None,
79            help_str = 'compile with rubberband (auto)',
80            help_disable_str = 'disable rubberband')
[a93dab3]81    add_option_enable_disable(ctx, 'memcpy', default = True,
82            help_str = 'use memcpy hacks (default)',
83            help_disable_str = 'do not use memcpy hacks')
84    add_option_enable_disable(ctx, 'double', default = False,
85            help_str = 'compile in double precision mode',
86            help_disable_str = 'compile in single precision mode (default)')
[a3de4be]87    add_option_enable_disable(ctx, 'fat', default = False,
88            help_str = 'build fat binaries (darwin only)',
89            help_disable_str = 'do not build fat binaries (default)')
[0309a22]90    add_option_enable_disable(ctx, 'accelerate', default = None,
91            help_str = 'use Accelerate framework (darwin only) (auto)',
92            help_disable_str = 'do not use Accelerate framework')
[cc81763]93    add_option_enable_disable(ctx, 'apple-audio', default = None,
94            help_str = 'use CoreFoundation (darwin only) (auto)',
95            help_disable_str = 'do not use CoreFoundation framework')
[fe05d1f]96    add_option_enable_disable(ctx, 'blas', default = False,
97            help_str = 'use BLAS acceleration library (no)',
98            help_disable_str = 'do not use BLAS library')
[f61ffb9]99    add_option_enable_disable(ctx, 'atlas', default = False,
[fe05d1f]100            help_str = 'use ATLAS acceleration library (no)',
101            help_disable_str = 'do not use ATLAS library')
[f9a543e]102    add_option_enable_disable(ctx, 'wavread', default = True,
103            help_str = 'compile with source_wavread (default)',
104            help_disable_str = 'do not compile source_wavread')
105    add_option_enable_disable(ctx, 'wavwrite', default = True,
106            help_str = 'compile with source_wavwrite (default)',
107            help_disable_str = 'do not compile source_wavwrite')
[a93dab3]108
[a33d406]109    add_option_enable_disable(ctx, 'docs', default = None,
110            help_str = 'build documentation (auto)',
111            help_disable_str = 'do not build documentation')
112
[445e60f5]113    add_option_enable_disable(ctx, 'tests', default = True,
114            help_str = 'build tests (true)',
115            help_disable_str = 'do not build or run tests')
116
117    add_option_enable_disable(ctx, 'examples', default = True,
118            help_str = 'build examples (true)',
119            help_disable_str = 'do not build examples')
120
[a93dab3]121    ctx.add_option('--with-target-platform', type='string',
[19237a7]122            help='set target platform for cross-compilation',
123            dest='target_platform')
[a93dab3]124
125    ctx.load('compiler_c')
126    ctx.load('waf_unit_test')
127    ctx.load('gnu_dirs')
[18ec142]128    ctx.load('waf_gensyms', tooldir='.')
[000b090]129
[d41bc4d]130def configure(ctx):
[fc5e189]131    target_platform = sys.platform
132    if ctx.options.target_platform:
133        target_platform = ctx.options.target_platform
[fee0094]134
[0cd3720]135    if ctx.options.nodeps:
136        external_deps = [
137                'sndfile',
138                'samplerate',
139                'jack',
[e625579]140                'rubberband',
[0cd3720]141                'avcodec',
142                'blas',
143                'fftw3',
144                'fftw3f',
145        ]
146        for d in external_deps:
147            if not hasattr(ctx.options, 'enable_' + d):
148                raise ctx.errors.ConfigurationError ('--enable-%s missing from options' % d)
149            if getattr(ctx.options, 'enable_' + d) == True:
150                msg = 'Option --nodeps can not be used along with --enable-%s' % d
151                raise ctx.errors.ConfigurationError (msg)
152            elif getattr(ctx.options, 'enable_' + d) is None:
153                msg = 'Option --nodeps used but automatic detection with --enable-%s' % d
154                ctx.msg('Warning', msg)
155            setattr(ctx.options, 'enable_' + d, False)
156
[a93dab3]157    from waflib import Options
[fc5e189]158
159    if target_platform=='emscripten':
[9fabad5]160        ctx.load('c_emscripten')
161    else:
162        ctx.load('compiler_c')
163
[a93dab3]164    ctx.load('waf_unit_test')
165    ctx.load('gnu_dirs')
[18ec142]166    ctx.load('waf_gensyms', tooldir='.')
[06dba46]167
[bef979a]168    # check for common headers
169    ctx.check(header_name='stdlib.h')
170    ctx.check(header_name='stdio.h')
171    ctx.check(header_name='math.h')
172    ctx.check(header_name='string.h')
[9d609355]173    ctx.check(header_name='errno.h')
[bef979a]174    ctx.check(header_name='limits.h')
[f334300]175    ctx.check(header_name='stdarg.h')
[d746ef8]176    ctx.check(header_name='getopt.h', mandatory = False)
[06cf47d]177    ctx.check(header_name='unistd.h', mandatory = False)
[bef979a]178
[a93dab3]179    ctx.env['DEST_OS'] = target_platform
180
[b4ce693]181    if ctx.options.build_type == "debug":
182        ctx.define('DEBUG', 1)
183    else:
184        ctx.define('NDEBUG', 1)
[578d3a2]185
[ae36035]186    if ctx.env.CC_NAME != 'msvc':
[c04346d]187        if ctx.options.build_type == "debug":
188            # no optimization in debug mode
[a6ba5d9f]189            ctx.env.prepend_value('CFLAGS', ['-O0'])
190        else:
[1539d4b]191            if target_platform == 'emscripten':
192                # -Oz for small js file generation
193                ctx.env.prepend_value('CFLAGS', ['-Oz'])
194            else:
[deaf39e]195                # default to -O2 in release mode
196                ctx.env.prepend_value('CFLAGS', ['-O2'])
[a6ba5d9f]197        # enable debug symbols and configure warnings
198        ctx.env.prepend_value('CFLAGS', ['-g', '-Wall', '-Wextra'])
[a341685]199    else:
[b4ce693]200        # enable debug symbols
[b0353ab]201        ctx.env.CFLAGS += ['/Z7']
202        # /FS flag available in msvc >= 12 (2013)
203        if 'MSVC_VERSION' in ctx.env and ctx.env.MSVC_VERSION >= 12:
204            ctx.env.CFLAGS += ['/FS']
[b4ce693]205        ctx.env.LINKFLAGS += ['/DEBUG', '/INCREMENTAL:NO']
206        # configure warnings
207        ctx.env.CFLAGS += ['/W4', '/D_CRT_SECURE_NO_WARNINGS']
[986131d]208        # ignore "possible loss of data" warnings
209        ctx.env.CFLAGS += ['/wd4305', '/wd4244', '/wd4245', '/wd4267']
210        # ignore "unreferenced formal parameter" warnings
211        ctx.env.CFLAGS += ['/wd4100']
[578d3a2]212        # set optimization level and runtime libs
[b4ce693]213        if (ctx.options.build_type == "release"):
214            ctx.env.CFLAGS += ['/Ox']
215            ctx.env.CFLAGS += ['/MD']
216        else:
217            assert(ctx.options.build_type == "debug")
218            ctx.env.CFLAGS += ['/MDd']
[a341685]219
[70a304e]220    ctx.check_cc(lib='m', uselib_store='M', mandatory=False)
221
[06dba46]222    if target_platform not in ['win32', 'win64']:
223        ctx.env.CFLAGS += ['-fPIC']
224    else:
225        ctx.define('HAVE_WIN_HACKS', 1)
226        ctx.env['cshlib_PATTERN'] = 'lib%s.dll'
[a93dab3]227
[a3de4be]228    if target_platform == 'darwin' and ctx.options.enable_fat:
[a93dab3]229        ctx.env.CFLAGS += ['-arch', 'i386', '-arch', 'x86_64']
230        ctx.env.LINKFLAGS += ['-arch', 'i386', '-arch', 'x86_64']
[da1709f]231        MINSDKVER="10.4"
232        ctx.env.CFLAGS += [ '-mmacosx-version-min=' + MINSDKVER ]
233        ctx.env.LINKFLAGS += [ '-mmacosx-version-min=' + MINSDKVER ]
[9209c79]234
235    if target_platform in [ 'darwin', 'ios', 'iosimulator']:
[cc81763]236        if (ctx.options.enable_apple_audio != False):
237            ctx.env.FRAMEWORK += ['CoreFoundation', 'AudioToolbox']
238            ctx.define('HAVE_SOURCE_APPLE_AUDIO', 1)
239            ctx.define('HAVE_SINK_APPLE_AUDIO', 1)
[f61ffb9]240            ctx.msg('Checking for AudioToolbox.framework', 'yes')
241        else:
[19237a7]242            ctx.msg('Checking for AudioToolbox.framework', 'no (disabled)',
243                    color = 'YELLOW')
[0309a22]244        if (ctx.options.enable_accelerate != False):
245            ctx.define('HAVE_ACCELERATE', 1)
246            ctx.env.FRAMEWORK += ['Accelerate']
[f61ffb9]247            ctx.msg('Checking for Accelerate framework', 'yes')
248        else:
[19237a7]249            ctx.msg('Checking for Accelerate framework', 'no (disabled)',
250                    color = 'YELLOW')
[a93dab3]251
252    if target_platform in [ 'ios', 'iosimulator' ]:
253        MINSDKVER="6.1"
254        ctx.env.CFLAGS += ['-std=c99']
[536bf70]255        if (ctx.options.enable_apple_audio != False):
[cc81763]256            ctx.define('HAVE_AUDIO_UNIT', 1)
257            #ctx.env.FRAMEWORK += ['CoreFoundation', 'AudioToolbox']
[a93dab3]258        if target_platform == 'ios':
259            DEVROOT = "/Applications/Xcode.app/Contents"
260            DEVROOT += "/Developer/Platforms/iPhoneOS.platform/Developer"
[e11ce489]261            SDKROOT = "%(DEVROOT)s/SDKs/iPhoneOS.sdk" % locals()
[94b16497]262            ctx.env.CFLAGS += [ '-fembed-bitcode' ]
[7aa4aaa]263            ctx.env.CFLAGS += [ '-arch', 'arm64' ]
[a93dab3]264            ctx.env.CFLAGS += [ '-arch', 'armv7' ]
265            ctx.env.CFLAGS += [ '-arch', 'armv7s' ]
[7aa4aaa]266            ctx.env.LINKFLAGS += [ '-arch', 'arm64' ]
[a93dab3]267            ctx.env.LINKFLAGS += ['-arch', 'armv7']
268            ctx.env.LINKFLAGS += ['-arch', 'armv7s']
269            ctx.env.CFLAGS += [ '-miphoneos-version-min=' + MINSDKVER ]
270            ctx.env.LINKFLAGS += [ '-miphoneos-version-min=' + MINSDKVER ]
271        else:
272            DEVROOT = "/Applications/Xcode.app/Contents"
273            DEVROOT += "/Developer/Platforms/iPhoneSimulator.platform/Developer"
[e11ce489]274            SDKROOT = "%(DEVROOT)s/SDKs/iPhoneSimulator.sdk" % locals()
[a93dab3]275            ctx.env.CFLAGS += [ '-arch', 'i386' ]
276            ctx.env.CFLAGS += [ '-arch', 'x86_64' ]
277            ctx.env.LINKFLAGS += ['-arch', 'i386']
278            ctx.env.LINKFLAGS += ['-arch', 'x86_64']
279            ctx.env.CFLAGS += [ '-mios-simulator-version-min=' + MINSDKVER ]
280            ctx.env.LINKFLAGS += [ '-mios-simulator-version-min=' + MINSDKVER ]
281        ctx.env.CFLAGS += [ '-isysroot' , SDKROOT]
282        ctx.env.LINKFLAGS += [ '-isysroot' , SDKROOT]
283
[fb5838a]284    if target_platform == 'emscripten':
[023e4b2]285        if ctx.options.build_type == "debug":
286            ctx.env.cshlib_PATTERN = '%s.js'
[6421221]287            ctx.env.LINKFLAGS += ['-s','ASSERTIONS=2']
288            ctx.env.LINKFLAGS += ['-s','SAFE_HEAP=1']
289            ctx.env.LINKFLAGS += ['-s','ALIASING_FUNCTION_POINTERS=0']
290            ctx.env.LINKFLAGS += ['-O0']
[023e4b2]291        else:
292            ctx.env.LINKFLAGS += ['-Oz']
293            ctx.env.cshlib_PATTERN = '%s.min.js'
[4b084a9]294
[342eb13e]295        # doesnt ship file system support in lib
[4b084a9]296        ctx.env.LINKFLAGS_cshlib += ['-s', 'NO_FILESYSTEM=1']
297        # put memory file inside generated js files for easier portability
298        ctx.env.LINKFLAGS += ['--memory-init-file', '0']
[fb5838a]299        ctx.env.cprogram_PATTERN = "%s.js"
[e717fae]300        ctx.env.cstlib_PATTERN = '%s.a'
[4b084a9]301
[342eb13e]302        # tell emscripten functions we want to expose
[f3f0d14]303        from python.lib.gen_external import get_c_declarations, \
[19237a7]304                get_cpp_objects_from_c_declarations, \
305                get_all_func_names_from_lib, \
[f3f0d14]306                generate_lib_from_c_declarations
[19237a7]307        # emscripten can't use double
308        c_decls = get_c_declarations(usedouble=False)
[873646d]309        objects = list(get_cpp_objects_from_c_declarations(c_decls))
[4b084a9]310        # ensure that aubio structs are exported
311        objects += ['fvec_t', 'cvec_t', 'fmat_t']
312        lib = generate_lib_from_c_declarations(objects, c_decls)
313        exported_funcnames = get_all_func_names_from_lib(lib)
314        c_mangled_names = ['_' + s for s in exported_funcnames]
[19237a7]315        ctx.env.LINKFLAGS_cshlib += ['-s',
316                'EXPORTED_FUNCTIONS=%s' % c_mangled_names]
[fb5838a]317
[a93dab3]318    # check support for C99 __VA_ARGS__ macros
319    check_c99_varargs = '''
[0318cc1]320#include <stdio.h>
321#define AUBIO_ERR(...) fprintf(stderr, __VA_ARGS__)
322'''
[a93dab3]323
324    if ctx.check_cc(fragment = check_c99_varargs,
325            type='cstlib',
[413d4bf]326            msg = 'Checking for C99 __VA_ARGS__ macro',
327            mandatory = False):
[a93dab3]328        ctx.define('HAVE_C99_VARARGS_MACROS', 1)
329
[06c6d7d]330    # show a message about enable_double status
[a93dab3]331    if (ctx.options.enable_double == True):
[06c6d7d]332        ctx.msg('Checking for size of smpl_t', 'double')
333        ctx.msg('Checking for size of lsmp_t', 'long double')
[a93dab3]334    else:
[06c6d7d]335        ctx.msg('Checking for size of smpl_t', 'float')
336        ctx.msg('Checking for size of lsmp_t', 'double')
[a93dab3]337
338    # optionally use complex.h
339    if (ctx.options.enable_complex == True):
340        ctx.check(header_name='complex.h')
[06c6d7d]341    else:
342        ctx.msg('Checking if complex.h is enabled', 'no')
[a93dab3]343
[986131d]344    # check for Intel IPP
345    if (ctx.options.enable_intelipp != False):
[19237a7]346        has_ipp_headers = ctx.check(header_name=['ippcore.h', 'ippvm.h',
347            'ipps.h'], mandatory = False)
[f3f0d14]348        has_ipp_libs = ctx.check(lib=['ippcore', 'ippvm', 'ipps'],
349                uselib_store='INTEL_IPP', mandatory = False)
350        if (has_ipp_headers and has_ipp_libs):
[986131d]351            ctx.msg('Checking if Intel IPP is available', 'yes')
352            ctx.define('HAVE_INTEL_IPP', 1)
353            if ctx.env.CC_NAME == 'msvc':
[19237a7]354                # force linking multi-threaded static IPP libraries on Windows
355                # with msvc
[986131d]356                ctx.define('_IPP_SEQUENTIAL_STATIC', 1)
357        else:
358            ctx.msg('Checking if Intel IPP is available', 'no')
[b701179]359
[a93dab3]360    # check for fftw3
361    if (ctx.options.enable_fftw3 != False or ctx.options.enable_fftw3f != False):
362        # one of fftwf or fftw3f
363        if (ctx.options.enable_fftw3f != False):
[badb525]364            ctx.check_cfg(package = 'fftw3f',
365                    args = '--cflags --libs fftw3f >= 3.0.0',
[795fcd9]366                    mandatory = ctx.options.enable_fftw3f)
[a93dab3]367            if (ctx.options.enable_double == True):
[795fcd9]368                ctx.msg('Warning',
369                        'fftw3f enabled, but compiling in double precision!')
[a93dab3]370        else:
[795fcd9]371            # fftw3f disabled, take most sensible one according to
372            # enable_double
[a93dab3]373            if (ctx.options.enable_double == True):
[badb525]374                ctx.check_cfg(package = 'fftw3',
375                        args = '--cflags --libs fftw3 >= 3.0.0.',
376                        mandatory = ctx.options.enable_fftw3)
[a93dab3]377            else:
[badb525]378                ctx.check_cfg(package = 'fftw3f',
379                        args = '--cflags --libs fftw3f >= 3.0.0',
[795fcd9]380                        mandatory = ctx.options.enable_fftw3)
[a93dab3]381        ctx.define('HAVE_FFTW3', 1)
382
[986131d]383    # fftw not enabled, use vDSP, intelIPP or ooura
[a93dab3]384    if 'HAVE_FFTW3F' in ctx.env.define_key:
385        ctx.msg('Checking for FFT implementation', 'fftw3f')
386    elif 'HAVE_FFTW3' in ctx.env.define_key:
387        ctx.msg('Checking for FFT implementation', 'fftw3')
388    elif 'HAVE_ACCELERATE' in ctx.env.define_key:
389        ctx.msg('Checking for FFT implementation', 'vDSP')
[986131d]390    elif 'HAVE_INTEL_IPP' in ctx.env.define_key:
391        ctx.msg('Checking for FFT implementation', 'Intel IPP')
[36f954a]392    else:
[a93dab3]393        ctx.msg('Checking for FFT implementation', 'ooura')
394
395    # check for libsndfile
396    if (ctx.options.enable_sndfile != False):
[badb525]397        ctx.check_cfg(package = 'sndfile',
398                args = '--cflags --libs sndfile >= 1.0.4',
[795fcd9]399                mandatory = ctx.options.enable_sndfile)
[a93dab3]400
401    # check for libsamplerate
[8be88e7]402    if (ctx.options.enable_double):
403        if (ctx.options.enable_samplerate):
[19237a7]404            ctx.fatal("Could not compile aubio in double precision mode' \
405                    ' with libsamplerate")
[8be88e7]406        else:
407            ctx.options.enable_samplerate = False
[19237a7]408            ctx.msg('Checking if using samplerate',
409                    'no (disabled in double precision mode)', color = 'YELLOW')
[a93dab3]410    if (ctx.options.enable_samplerate != False):
[badb525]411        ctx.check_cfg(package = 'samplerate',
412                args = '--cflags --libs samplerate >= 0.0.15',
[795fcd9]413                mandatory = ctx.options.enable_samplerate)
[a93dab3]414
[d9d1010]415    # check for librubberband
416    if (ctx.options.enable_rubberband != False):
[8e1328f]417        ctx.check_cfg(package = 'rubberband', atleast_version = '1.3',
[d9d1010]418                args = '--cflags --libs',
419                mandatory = ctx.options.enable_rubberband)
420
[a93dab3]421    # check for jack
422    if (ctx.options.enable_jack != False):
[eb99982]423        ctx.check_cfg(package = 'jack',
[795fcd9]424                args = '--cflags --libs',
425                mandatory = ctx.options.enable_jack)
[a93dab3]426
427    # check for libav
428    if (ctx.options.enable_avcodec != False):
[badb525]429        ctx.check_cfg(package = 'libavcodec',
430                args = '--cflags --libs libavcodec >= 54.35.0',
431                uselib_store = 'AVCODEC',
[795fcd9]432                mandatory = ctx.options.enable_avcodec)
[badb525]433        ctx.check_cfg(package = 'libavformat',
434                args = '--cflags --libs libavformat >= 52.3.0',
435                uselib_store = 'AVFORMAT',
[795fcd9]436                mandatory = ctx.options.enable_avcodec)
[badb525]437        ctx.check_cfg(package = 'libavutil',
438                args = '--cflags --libs libavutil >= 52.3.0',
439                uselib_store = 'AVUTIL',
[795fcd9]440                mandatory = ctx.options.enable_avcodec)
[badb525]441        ctx.check_cfg(package = 'libswresample',
[65b5381]442                args = '--cflags --libs libswresample >= 1.2.0',
[badb525]443                uselib_store = 'SWRESAMPLE',
[d82e7a4]444                mandatory = False)
445        if 'HAVE_SWRESAMPLE' not in ctx.env:
[badb525]446            ctx.check_cfg(package = 'libavresample',
447                    args = '--cflags --libs libavresample >= 1.0.1',
448                    uselib_store = 'AVRESAMPLE',
[d82e7a4]449                    mandatory = False)
450
451        msg_check = 'Checking for all libav libraries'
452        if 'HAVE_AVCODEC' not in ctx.env:
453            ctx.msg(msg_check, 'not found (missing avcodec)', color = 'YELLOW')
454        elif 'HAVE_AVFORMAT' not in ctx.env:
455            ctx.msg(msg_check, 'not found (missing avformat)', color = 'YELLOW')
456        elif 'HAVE_AVUTIL' not in ctx.env:
457            ctx.msg(msg_check, 'not found (missing avutil)', color = 'YELLOW')
[19237a7]458        elif 'HAVE_SWRESAMPLE' not in ctx.env \
459                and 'HAVE_AVRESAMPLE' not in ctx.env:
[c3b3b84]460            resample_missing = 'not found (avresample or swresample required)'
461            ctx.msg(msg_check, resample_missing, color = 'YELLOW')
[549928e]462        else:
[d82e7a4]463            ctx.msg(msg_check, 'yes')
464            if 'HAVE_SWRESAMPLE' in ctx.env:
465                ctx.define('HAVE_SWRESAMPLE', 1)
466            elif 'HAVE_AVRESAMPLE' in ctx.env:
467                ctx.define('HAVE_AVRESAMPLE', 1)
468            ctx.define('HAVE_LIBAV', 1)
[5158c22]469
[f9a543e]470    if (ctx.options.enable_wavread != False):
471        ctx.define('HAVE_WAVREAD', 1)
[19237a7]472    ctx.msg('Checking if using source_wavread',
473            ctx.options.enable_wavread and 'yes' or 'no')
[f9a543e]474    if (ctx.options.enable_wavwrite!= False):
475        ctx.define('HAVE_WAVWRITE', 1)
[19237a7]476    ctx.msg('Checking if using sink_wavwrite',
477            ctx.options.enable_wavwrite and 'yes' or 'no')
[5158c22]478
[fe05d1f]479    # use BLAS/ATLAS
480    if (ctx.options.enable_blas != False):
481        ctx.check_cfg(package = 'blas',
482                args = '--cflags --libs',
483                uselib_store='BLAS', mandatory = ctx.options.enable_blas)
484        if 'LIB_BLAS' in ctx.env:
485            blas_header = None
486            if ctx.env['LIBPATH_BLAS']:
487                if 'atlas' in ctx.env['LIBPATH_BLAS'][0]:
488                    blas_header = 'atlas/cblas.h'
489                elif 'openblas' in ctx.env['LIBPATH_BLAS'][0]:
490                    blas_header = 'openblas/cblas.h'
491            else:
492                blas_header = 'cblas.h'
493            ctx.check(header_name = blas_header, mandatory =
494                    ctx.options.enable_atlas)
[f0ce36a1]495
[a93dab3]496    # use memcpy hacks
497    if (ctx.options.enable_memcpy == True):
498        ctx.define('HAVE_MEMCPY_HACKS', 1)
499
500    # write configuration header
501    ctx.write_config_header('src/config.h')
502
[06c6d7d]503    # the following defines will be passed as arguments to the compiler
504    # instead of being written to src/config.h
[1910fed]505    ctx.define('HAVE_CONFIG_H', 1)
[06c6d7d]506
[a93dab3]507    # add some defines used in examples
508    ctx.define('AUBIO_PREFIX', ctx.env['PREFIX'])
509    ctx.define('PACKAGE', APPNAME)
510
[06c6d7d]511    # double precision mode
512    if (ctx.options.enable_double == True):
513        ctx.define('HAVE_AUBIO_DOUBLE', 1)
514
[a33d406]515    if (ctx.options.enable_docs != False):
516        # check if txt2man is installed, optional
517        try:
518          ctx.find_program('txt2man', var='TXT2MAN')
519        except ctx.errors.ConfigurationError:
520          ctx.to_log('txt2man was not found (ignoring)')
[000b090]521
[a33d406]522        # check if doxygen is installed, optional
523        try:
524          ctx.find_program('doxygen', var='DOXYGEN')
525        except ctx.errors.ConfigurationError:
526          ctx.to_log('doxygen was not found (ignoring)')
[52a25e5]527
[7800335]528        # check if sphinx-build is installed, optional
529        try:
530          ctx.find_program('sphinx-build', var='SPHINX')
531        except ctx.errors.ConfigurationError:
532          ctx.to_log('sphinx-build was not found (ignoring)')
533
[6ed0f4e]534def build(bld):
[985a5d1]535    bld.env['VERSION'] = VERSION
536    bld.env['LIB_VERSION'] = LIB_VERSION
537
[7b38f3f]538    # main source
[985a5d1]539    bld.recurse('src')
540
[7b38f3f]541    # add sub directories
[985a5d1]542    if bld.env['DEST_OS'] not in ['ios', 'iosimulator', 'android']:
[9fabad5]543        if bld.env['DEST_OS']=='emscripten' and not bld.options.testcmd:
544            bld.options.testcmd = 'node %s'
[445e60f5]545        if bld.options.enable_examples:
546            bld.recurse('examples')
547        if bld.options.enable_tests:
548            bld.recurse('tests')
[985a5d1]549
[7b38f3f]550    # pkg-config template
[985a5d1]551    bld( source = 'aubio.pc.in' )
552
[7b38f3f]553    # documentation
554    txt2man(bld)
555    doxygen(bld)
556    sphinx(bld)
557
[9ffa590]558    from waflib.Tools import waf_unit_test
559    bld.add_post_fun(waf_unit_test.summary)
560    bld.add_post_fun(waf_unit_test.set_exit_code)
561
[7b38f3f]562def txt2man(bld):
[52a25e5]563    # build manpages from txt files using txt2man
[403e9dd]564    if bld.env['TXT2MAN']:
[985a5d1]565        from waflib import TaskGen
566        if 'MANDIR' not in bld.env:
[641e533]567            bld.env['MANDIR'] = bld.env['DATAROOTDIR'] + '/man'
[e3b77e8]568        bld.env.VERSION = VERSION
[403e9dd]569        rule_str = '${TXT2MAN} -t `basename ${TGT} | cut -f 1 -d . | tr a-z A-Z`'
570        rule_str += ' -r ${PACKAGE}\\ ${VERSION} -P ${PACKAGE}'
571        rule_str += ' -v ${PACKAGE}\\ User\\\'s\\ manual'
572        rule_str += ' -s 1 ${SRC} > ${TGT}'
[985a5d1]573        TaskGen.declare_chain(
[403e9dd]574                name      = 'txt2man',
575                rule      = rule_str,
576                ext_in    = '.txt',
[985a5d1]577                ext_out   = '.1',
578                reentrant = False,
579                install_path =  '${MANDIR}/man1',
580                )
[403e9dd]581        bld( source = bld.path.ant_glob('doc/*.txt') )
[985a5d1]582
[7b38f3f]583def doxygen(bld):
[52a25e5]584    # build documentation from source files using doxygen
585    if bld.env['DOXYGEN']:
[a24a84e]586        bld.env.VERSION = VERSION
[6383ca4]587        rule = '( cat ${SRC[0]} && echo PROJECT_NUMBER=${VERSION}'
588        rule += ' && echo OUTPUT_DIRECTORY=%s && echo HTML_OUTPUT=%s )'
[a24a84e]589        rule += ' | doxygen - > /dev/null'
[6383ca4]590        rule %= (os.path.abspath(out), 'api')
[a24a84e]591        bld( name = 'doxygen', rule = rule,
[6383ca4]592                source = ['doc/web.cfg']
593                    + bld.path.find_dir('src').ant_glob('**/*.h'),
594                target = bld.path.find_or_declare('api/index.html'),
595                cwd = bld.path.find_dir('doc'))
[2d64a24]596        # evaluate nodes lazily to prevent build directory traversal warnings
[6383ca4]597        bld.install_files('${DATAROOTDIR}/doc/libaubio-doc/api',
[2d64a24]598                bld.path.find_or_declare('api').ant_glob('**/*',
599                    generator=True), cwd=bld.path.find_or_declare('api'),
[6383ca4]600                relative_trick=True)
[7800335]601
[7b38f3f]602def sphinx(bld):
[6383ca4]603    # build documentation from source files using sphinx-build
604    try:
605        import aubio
606        has_aubio = True
607    except ImportError:
608        from waflib import Logs
609        Logs.pprint('YELLOW', "Sphinx manual: install aubio first")
610        has_aubio = False
611    if bld.env['SPHINX'] and has_aubio:
[e3b77e8]612        bld.env.VERSION = VERSION
[6383ca4]613        rule = '${SPHINX} -b html -D release=${VERSION}' \
614                ' -D version=${VERSION} -W -a -q' \
615                ' -d %s ' % os.path.join(os.path.abspath(out), 'doctrees')
616        rule += ' . %s' % os.path.join(os.path.abspath(out), 'manual')
617        bld( name = 'sphinx', rule = rule,
618                cwd = bld.path.find_dir('doc'),
619                source = bld.path.find_dir('doc').ant_glob('*.rst'),
620                target = bld.path.find_or_declare('manual/index.html'))
[2d64a24]621        # evaluate nodes lazily to prevent build directory traversal warnings
[6383ca4]622        bld.install_files('${DATAROOTDIR}/doc/libaubio-doc/manual',
[2d64a24]623                bld.path.find_or_declare('manual').ant_glob('**/*',
624                    generator=True), cwd=bld.path.find_or_declare('manual'),
[6383ca4]625                relative_trick=True)
[50d56cc]626
[7b38f3f]627# register the previous rules as build rules
628from waflib.Build import BuildContext
629
630class build_txt2man(BuildContext):
631    cmd = 'txt2man'
632    fun = 'txt2man'
633
634class build_manpages(BuildContext):
635    cmd = 'manpages'
636    fun = 'txt2man'
637
638class build_sphinx(BuildContext):
639    cmd = 'sphinx'
640    fun = 'sphinx'
641
642class build_doxygen(BuildContext):
643    cmd = 'doxygen'
644    fun = 'doxygen'
645
[30250de]646def shutdown(bld):
[985a5d1]647    from waflib import Logs
648    if bld.options.target_platform in ['ios', 'iosimulator']:
[19237a7]649        msg ='building for %s, contact the author for a commercial license' \
650                % bld.options.target_platform
[985a5d1]651        Logs.pprint('RED', msg)
652        msg ='   Paul Brossier <piem@aubio.org>'
653        Logs.pprint('RED', msg)
[b4d1ba1]654
655def dist(ctx):
[19237a7]656    ctx.excl  = ' **/.waf*'
657    ctx.excl += ' **/.git*'
658    ctx.excl += ' **/*~ **/*.pyc **/*.swp **/*.swo **/*.swn **/.lock-w*'
[b4d1ba1]659    ctx.excl += ' **/build/*'
[99d8cbb]660    ctx.excl += ' doc/_build'
661    ctx.excl += ' python/demos_*'
[22dd9dc]662    ctx.excl += ' **/python/gen **/python/build **/python/dist'
[981e7082]663    ctx.excl += ' **/python/ext/config.h'
[99d8cbb]664    ctx.excl += ' **/python/lib/aubio/_aubio.so'
665    ctx.excl += ' **.egg-info'
[a4afbac]666    ctx.excl += ' **/.eggs'
667    ctx.excl += ' **/.pytest_cache'
668    ctx.excl += ' **/.cache'
[22dd9dc]669    ctx.excl += ' **/**.zip **/**.tar.bz2'
[fcc11e9]670    ctx.excl += ' **.tar.bz2**'
[a93dab3]671    ctx.excl += ' **/doc/full/* **/doc/web/*'
[e57a7d4]672    ctx.excl += ' **/doc/full.cfg'
[b4d1ba1]673    ctx.excl += ' **/python/*.db'
674    ctx.excl += ' **/python.old/*'
[981e7082]675    ctx.excl += ' **/python/*/*.old'
[429ff6c]676    ctx.excl += ' **/python/lib/aubio/*.so'
[172b1fe]677    ctx.excl += ' **/python/tests/sounds'
[7b2d740]678    ctx.excl += ' **/**.asc'
[5e544f1]679    ctx.excl += ' **/dist*'
[73aac2a]680    ctx.excl += ' **/.DS_Store'
681    ctx.excl += ' **/.travis.yml'
[5e544f1]682    ctx.excl += ' **/.appveyor.yml'
[8142a7e]683    ctx.excl += ' **/.circleci/*'
[622b6dc]684    ctx.excl += ' **/azure-pipelines.yml'
[429ff6c]685    ctx.excl += ' **/.coverage*'
Note: See TracBrowser for help on using the repository browser.