Changes in / [db120ac:6bbdcff]
- Files:
-
- 2 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/aubio.h
rdb120ac r6bbdcff 185 185 #include "io/source.h" 186 186 #include "io/sink.h" 187 #include "io/audio_unit.h"188 187 #include "synth/sampler.h" 189 188 -
src/wscript_build
rdb120ac r6bbdcff 16 16 # build libaubio 17 17 from waflib import Options 18 if Options.platform == 'ios': 19 build_lib_func = ctx.stlib 20 else: 21 build_lib_func = ctx.shlib 22 18 if Options.platform == 'ios': build_lib_func = ctx.stlib 19 else: build_lib_func = ctx.shlib 23 20 build_lib_func( 24 21 includes = ['.'], … … 27 24 lib = 'm', 28 25 uselib = uselib, 29 install_path = '${PREFIX}/lib',30 26 vnum = ctx.env['LIB_VERSION']) 31 27 32 28 # install headers, except _priv.h ones 33 29 ctx.install_files('${PREFIX}/include/aubio/', 30 34 31 ctx.path.ant_glob('**/*.h', excl = ['**_priv.h', 'config.h']), 35 32 relative_trick=True) -
wscript
rdb120ac r6bbdcff 78 78 ctx.env.LD = 'clang' 79 79 ctx.env.LINK_CC = 'clang' 80 ctx.define('TARGET_OS_IPHONE', 1)81 80 SDKVER="6.1" 82 81 DEVROOT="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer" 83 82 SDKROOT="%(DEVROOT)s/SDKs/iPhoneOS%(SDKVER)s.sdk" % locals() 84 83 ctx.env.FRAMEWORK = ['CoreFoundation', 'AudioToolbox'] 85 ctx.env.CFLAGS += [ '-miphoneos-version-min=6.1', '-arch', 'armv7', '-arch', 'armv7s',84 ctx.env.CFLAGS += [ '-miphoneos-version-min=6.1', '-arch', 'armv7', 86 85 '--sysroot=%s' % SDKROOT] 87 ctx.env.LINKFLAGS += ['-std=c99', '-arch', 'armv7', '- arch', 'armv7s', '--sysroot=%s' %86 ctx.env.LINKFLAGS += ['-std=c99', '-arch', 'armv7', '--sysroot=%s' % 88 87 SDKROOT] 89 88
Note: See TracChangeset
for help on using the changeset viewer.