wscript: variadic functions should be optional
[aubio.git] / wscript
1 #! /usr/bin/python
2 #
3 # waf build system, see http://code.google.com/p/waf/
4 #
5 # usage:
6 #     $ ./waf distclean configure build
7 #
8 # TODO
9 #  - doc: add doxygen
10 #  - tests: move to new unit test system
11
12 APPNAME = 'aubio'
13
14 # source VERSION
15 for l in open('VERSION').readlines(): exec (l.strip())
16
17 VERSION = '.'.join ([str(x) for x in [
18     AUBIO_MAJOR_VERSION,
19     AUBIO_MINOR_VERSION,
20     AUBIO_PATCH_VERSION
21     ]]) + AUBIO_VERSION_STATUS
22
23 LIB_VERSION = '.'.join ([str(x) for x in [
24     LIBAUBIO_LT_CUR,
25     LIBAUBIO_LT_REV,
26     LIBAUBIO_LT_AGE]])
27
28 top = '.'
29 out = 'build'
30
31 def add_option_enable_disable(ctx, name, default = None,
32         help_str = None, help_disable_str = None):
33     if help_str == None:
34         help_str = 'enable ' + name + ' support'
35     if help_disable_str == None:
36         help_disable_str = 'do not ' + help_str
37     ctx.add_option('--enable-' + name, action = 'store_true',
38             default = default,
39             dest = 'enable_' + name.replace('-','_'),
40             help = help_str)
41     ctx.add_option('--disable-' + name, action = 'store_false',
42             #default = default,
43             dest = 'enable_' + name.replace('-','_'),
44             help = help_disable_str )
45
46 def options(ctx):
47     add_option_enable_disable(ctx, 'fftw3f', default = False,
48             help_str = 'compile with fftw3f instead of ooura (recommended)',
49             help_disable_str = 'do not compile with fftw3f')
50     add_option_enable_disable(ctx, 'fftw3', default = False,
51             help_str = 'compile with fftw3 instead of ooura',
52             help_disable_str = 'do not compile with fftw3')
53     add_option_enable_disable(ctx, 'complex', default = False,
54             help_str ='compile with C99 complex',
55             help_disable_str = 'do not use C99 complex (default)' )
56     add_option_enable_disable(ctx, 'jack', default = None,
57             help_str = 'compile with jack (auto)',
58             help_disable_str = 'disable jack support')
59     add_option_enable_disable(ctx, 'sndfile', default = None,
60             help_str = 'compile with sndfile (auto)',
61             help_disable_str = 'disable sndfile')
62     add_option_enable_disable(ctx, 'avcodec', default = None,
63             help_str = 'compile with libavcodec (auto)',
64             help_disable_str = 'disable libavcodec')
65     add_option_enable_disable(ctx, 'samplerate', default = None,
66             help_str = 'compile with samplerate (auto)',
67             help_disable_str = 'disable samplerate')
68     add_option_enable_disable(ctx, 'memcpy', default = True,
69             help_str = 'use memcpy hacks (default)',
70             help_disable_str = 'do not use memcpy hacks')
71     add_option_enable_disable(ctx, 'double', default = False,
72             help_str = 'compile in double precision mode',
73             help_disable_str = 'compile in single precision mode (default)')
74
75     ctx.add_option('--with-target-platform', type='string',
76             help='set target platform for cross-compilation', dest='target_platform')
77
78     ctx.load('compiler_c')
79     ctx.load('waf_unit_test')
80     ctx.load('gnu_dirs')
81
82 def configure(ctx):
83     from waflib import Options
84     ctx.load('compiler_c')
85     ctx.load('waf_unit_test')
86     ctx.load('gnu_dirs')
87
88     ctx.env.CFLAGS += ['-g', '-Wall', '-Wextra']
89
90     target_platform = Options.platform
91     if ctx.options.target_platform:
92         target_platform = ctx.options.target_platform
93     ctx.env['DEST_OS'] = target_platform
94
95     if target_platform not in ['win32', 'win64']:
96         ctx.env.CFLAGS += ['-fPIC']
97     else:
98         ctx.define('HAVE_WIN_HACKS', 1)
99         ctx.env['cshlib_PATTERN'] = 'lib%s.dll'
100
101     if target_platform == 'darwin':
102         ctx.env.CFLAGS += ['-arch', 'i386', '-arch', 'x86_64']
103         ctx.env.LINKFLAGS += ['-arch', 'i386', '-arch', 'x86_64']
104         ctx.env.FRAMEWORK = ['CoreFoundation', 'AudioToolbox', 'Accelerate']
105         ctx.define('HAVE_ACCELERATE', 1)
106
107     if target_platform in [ 'ios', 'iosimulator' ]:
108         ctx.define('HAVE_ACCELERATE', 1)
109         ctx.define('TARGET_OS_IPHONE', 1)
110         ctx.env.FRAMEWORK = ['CoreFoundation', 'AudioToolbox', 'Accelerate']
111         SDKVER="7.0"
112         MINSDKVER="6.1"
113         ctx.env.CFLAGS += ['-std=c99']
114         if target_platform == 'ios':
115             DEVROOT = "/Applications/Xcode.app/Contents"
116             DEVROOT += "/Developer/Platforms/iPhoneOS.platform/Developer"
117             SDKROOT = "%(DEVROOT)s/SDKs/iPhoneOS%(SDKVER)s.sdk" % locals()
118             ctx.env.CFLAGS += [ '-arch', 'arm64' ]
119             ctx.env.CFLAGS += [ '-arch', 'armv7' ]
120             ctx.env.CFLAGS += [ '-arch', 'armv7s' ]
121             ctx.env.LINKFLAGS += [ '-arch', 'arm64' ]
122             ctx.env.LINKFLAGS += ['-arch', 'armv7']
123             ctx.env.LINKFLAGS += ['-arch', 'armv7s']
124             ctx.env.CFLAGS += [ '-miphoneos-version-min=' + MINSDKVER ]
125             ctx.env.LINKFLAGS += [ '-miphoneos-version-min=' + MINSDKVER ]
126         else:
127             DEVROOT = "/Applications/Xcode.app/Contents"
128             DEVROOT += "/Developer/Platforms/iPhoneSimulator.platform/Developer"
129             SDKROOT = "%(DEVROOT)s/SDKs/iPhoneSimulator%(SDKVER)s.sdk" % locals()
130             ctx.env.CFLAGS += [ '-arch', 'i386' ]
131             ctx.env.CFLAGS += [ '-arch', 'x86_64' ]
132             ctx.env.LINKFLAGS += ['-arch', 'i386']
133             ctx.env.LINKFLAGS += ['-arch', 'x86_64']
134             ctx.env.CFLAGS += [ '-mios-simulator-version-min=' + MINSDKVER ]
135             ctx.env.LINKFLAGS += [ '-mios-simulator-version-min=' + MINSDKVER ]
136         ctx.env.CFLAGS += [ '-isysroot' , SDKROOT]
137         ctx.env.LINKFLAGS += [ '-isysroot' , SDKROOT]
138
139     # check for required headers
140     ctx.check(header_name='stdlib.h')
141     ctx.check(header_name='stdio.h')
142     ctx.check(header_name='math.h')
143     ctx.check(header_name='string.h')
144     ctx.check(header_name='limits.h')
145
146     # check support for C99 __VA_ARGS__ macros
147     check_c99_varargs = '''
148 #include <stdio.h>
149 #define AUBIO_ERR(...) fprintf(stderr, __VA_ARGS__)
150 '''
151
152     if ctx.check_cc(fragment = check_c99_varargs,
153             type='cstlib',
154             msg = 'Checking for C99 __VA_ARGS__ macro',
155             mandatory = False):
156         ctx.define('HAVE_C99_VARARGS_MACROS', 1)
157
158     # double precision mode
159     if (ctx.options.enable_double == True):
160         ctx.define('HAVE_AUBIO_DOUBLE', 1)
161     else:
162         ctx.define('HAVE_AUBIO_DOUBLE', 0)
163
164     # optionally use complex.h
165     if (ctx.options.enable_complex == True):
166         ctx.check(header_name='complex.h')
167
168     # check for fftw3
169     if (ctx.options.enable_fftw3 != False or ctx.options.enable_fftw3f != False):
170         # one of fftwf or fftw3f
171         if (ctx.options.enable_fftw3f != False):
172             ctx.check_cfg(package = 'fftw3f', atleast_version = '3.0.0',
173                     args = '--cflags --libs', mandatory = False)
174             if (ctx.options.enable_double == True):
175                 ctx.msg('Warning', 'fftw3f enabled, but compiling in double precision!')
176         else:
177             # fftw3f not enabled, take most sensible one according to enable_double
178             if (ctx.options.enable_double == True):
179                 ctx.check_cfg(package = 'fftw3', atleast_version = '3.0.0',
180                         args = '--cflags --libs', mandatory = False)
181             else:
182                 ctx.check_cfg(package = 'fftw3f', atleast_version = '3.0.0',
183                         args = '--cflags --libs', mandatory = False)
184         ctx.define('HAVE_FFTW3', 1)
185
186     # fftw not enabled, use vDSP or ooura
187     if 'HAVE_FFTW3F' in ctx.env.define_key:
188         ctx.msg('Checking for FFT implementation', 'fftw3f')
189     elif 'HAVE_FFTW3' in ctx.env.define_key:
190         ctx.msg('Checking for FFT implementation', 'fftw3')
191     elif 'HAVE_ACCELERATE' in ctx.env.define_key:
192         ctx.msg('Checking for FFT implementation', 'vDSP')
193     else:
194         ctx.msg('Checking for FFT implementation', 'ooura')
195
196     # check for libsndfile
197     if (ctx.options.enable_sndfile != False):
198         ctx.check_cfg(package = 'sndfile', atleast_version = '1.0.4',
199                 args = '--cflags --libs', mandatory = False)
200
201     # check for libsamplerate
202     if (ctx.options.enable_samplerate != False):
203         ctx.check_cfg(package = 'samplerate', atleast_version = '0.0.15',
204                 args = '--cflags --libs', mandatory = False)
205
206     # check for jack
207     if (ctx.options.enable_jack != False):
208         ctx.check_cfg(package = 'jack',
209                 args = '--cflags --libs', mandatory = False)
210
211     # check for libav
212     if (ctx.options.enable_avcodec != False):
213         ctx.check_cfg(package = 'libavcodec', atleast_version = '54.35.0',
214                 args = '--cflags --libs', uselib_store = 'AVCODEC', mandatory = False)
215         ctx.check_cfg(package = 'libavformat', atleast_version = '52.3.0',
216                 args = '--cflags --libs', uselib_store = 'AVFORMAT', mandatory = False)
217         ctx.check_cfg(package = 'libavutil', atleast_version = '52.3.0',
218                 args = '--cflags --libs', uselib_store = 'AVUTIL', mandatory = False)
219         ctx.check_cfg(package = 'libavresample', atleast_version = '1.0.1',
220                 args = '--cflags --libs', uselib_store = 'AVRESAMPLE', mandatory = False)
221         if all ( 'HAVE_' + i in ctx.env.define_key
222                 for i in ['AVCODEC', 'AVFORMAT', 'AVUTIL', 'AVRESAMPLE'] ):
223             ctx.define('HAVE_LIBAV', 1)
224             ctx.msg('Checking for all libav libraries', 'yes')
225         else:
226             ctx.msg('Checking for all libav libraries', 'not found', color = 'YELLOW')
227
228     # use memcpy hacks
229     if (ctx.options.enable_memcpy == True):
230         ctx.define('HAVE_MEMCPY_HACKS', 1)
231     else:
232         ctx.define('HAVE_MEMCPY_HACKS', 0)
233
234     # write configuration header
235     ctx.write_config_header('src/config.h')
236
237     # add some defines used in examples
238     ctx.define('AUBIO_PREFIX', ctx.env['PREFIX'])
239     ctx.define('PACKAGE', APPNAME)
240
241     # check if txt2man is installed, optional
242     try:
243       ctx.find_program('txt2man', var='TXT2MAN')
244     except ctx.errors.ConfigurationError:
245       ctx.to_log('txt2man was not found (ignoring)')
246
247     # check if doxygen is installed, optional
248     try:
249       ctx.find_program('doxygen', var='DOXYGEN')
250     except ctx.errors.ConfigurationError:
251       ctx.to_log('doxygen was not found (ignoring)')
252
253 def build(bld):
254     bld.env['VERSION'] = VERSION
255     bld.env['LIB_VERSION'] = LIB_VERSION
256
257     # add sub directories
258     bld.recurse('src')
259     if bld.env['DEST_OS'] not in ['ios', 'iosimulator']:
260         pass
261     if bld.env['DEST_OS'] not in ['ios', 'iosimulator', 'android']:
262         bld.recurse('examples')
263         bld.recurse('tests')
264
265     bld( source = 'aubio.pc.in' )
266
267     # build manpages from txt files using txt2man
268     if bld.env['TXT2MAN']:
269         from waflib import TaskGen
270         if 'MANDIR' not in bld.env:
271             bld.env['MANDIR'] = bld.env['PREFIX'] + '/share/man'
272         rule_str = '${TXT2MAN} -t `basename ${TGT} | cut -f 1 -d . | tr a-z A-Z`'
273         rule_str += ' -r ${PACKAGE}\\ ${VERSION} -P ${PACKAGE}'
274         rule_str += ' -v ${PACKAGE}\\ User\\\'s\\ manual'
275         rule_str += ' -s 1 ${SRC} > ${TGT}'
276         TaskGen.declare_chain(
277                 name      = 'txt2man',
278                 rule      = rule_str,
279                 ext_in    = '.txt',
280                 ext_out   = '.1',
281                 reentrant = False,
282                 install_path =  '${MANDIR}/man1',
283                 )
284         bld( source = bld.path.ant_glob('doc/*.txt') )
285
286     # build documentation from source files using doxygen
287     if bld.env['DOXYGEN']:
288         bld( name = 'doxygen', rule = 'doxygen ${SRC} > /dev/null',
289                 source = 'doc/web.cfg',
290                 cwd = 'doc')
291         bld.install_files( '${PREFIX}' + '/share/doc/libaubio-doc',
292                 bld.path.ant_glob('doc/web/html/**'),
293                 cwd = bld.path.find_dir ('doc/web'),
294                 relative_trick = True)
295
296 def shutdown(bld):
297     from waflib import Logs
298     if bld.options.target_platform in ['ios', 'iosimulator']:
299         msg ='building for %s, contact the author for a commercial license' % bld.options.target_platform
300         Logs.pprint('RED', msg)
301         msg ='   Paul Brossier <piem@aubio.org>'
302         Logs.pprint('RED', msg)
303
304 def dist(ctx):
305     ctx.excl  = ' **/.waf-1* **/*~ **/*.pyc **/*.swp **/.lock-w* **/.git*'
306     ctx.excl += ' **/build/*'
307     ctx.excl += ' **/python/gen **/python/build **/python/dist'
308     ctx.excl += ' **/**.zip **/**.tar.bz2'
309     ctx.excl += ' **/doc/full/* **/doc/web/*'
310     ctx.excl += ' **/python/*.db'
311     ctx.excl += ' **/python.old/*'
312     ctx.excl += ' **/python/tests/sounds'