source: wscript @ fe05d1f

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

wscript: detect includes for openblas/libblas/atlas

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