source: wscript @ 2d64a24

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/timestretchfix/ffmpeg5
Last change on this file since 2d64a24 was 2d64a24, checked in by Paul Brossier <piem@piem.org>, 5 years ago

[waf] avoid warnings about build dir traversal

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