source: wscript @ 05ed7f5

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

Merge branch 'feature/timestretch'

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