source: wscript @ af27265

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

src/io/source_avcodec.c: added first draft

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