# This file contains the default configuration to compile for iPhoneOS # platforms. It contains sensitive enviroment configuration that # shouldn't be modified unless you know what you are doing. # PLEASE, DO NOT EDIT THIS FILE import os from cerbero.utils import shell from cerbero.config import Architecture, DistroVersion from cerbero.errors import FatalError variants += ['nogtk3', 'noclutter', 'nopython', 'notestspackage'] # We don't want anything from macports detected in configure and # used later. System libs are passed through the -isysroot option allow_system_libs=False # The linker crashes if minversion is set to 6.0 # Setting it to 5.1 (that doesn't exist) makes the minversion # effectively be 6.0 without making it crash min_version='5.1' if target_distro_version == distro_version: target_distro_version = None if target_arch == Architecture.X86: ios_platform = 'iPhoneSimulator' else: ios_platform = 'iPhoneOS' iphone_platform = '/Applications/Xcode.app/Contents/Developer/Platforms/%s.platform/Developer' % ios_platform _toolchain_root = '%s/usr/bin' % iphone_platform # Find the installed SDK _sdk_version = None for d,v in [(DistroVersion.IOS_8_1, '8.1'), (DistroVersion.IOS_8_0, '8.0'), (DistroVersion.IOS_7_1, '7.1'), (DistroVersion.IOS_7_0, '7.0'), (DistroVersion.IOS_6_1, '6.1'), (DistroVersion.IOS_6_0, '6.0')]: sysroot = os.path.join(iphone_platform, 'SDKs', '%s%s.sdk' %(ios_platform, v)) if os.path.exists (sysroot): _sdk_version = d break if target_distro_version is not None and target_distro_version != _sdk_version: raise FatalError("The SDK for %s is not installed" % target_distro_version) elif _sdk_version is None: raise FatalError("The SDK for iOS could not be found in your system") else: target_distro_version = _sdk_version ccache = use_ccache and 'ccache ' or '' extra_cflags='-Wall -g -Os' if target_arch == Architecture.ARMv7S: arch_cflags = ' -arch armv7s -mcpu=cortex-a9 -pipe' host = 'arm-apple-darwin10' elif target_arch == Architecture.ARMv7: arch_cflags = ' -arch armv7 -mcpu=cortex-a8 -pipe' host = 'arm-apple-darwin10' elif target_arch == Architecture.ARM: arch_cflags = ' -arch armv6 -mcpu=arm1176jzf-s -pipe' host = 'arm-apple-darwin10' elif target_arch == Architecture.X86: arch_cflags = ' -arch i386 ' host = 'i386-apple-darwin10' elif target_arch == Architecture.UNIVERSAL: arch_cflags='' else: raise FatalError("Arch %s not supported" % target_arch) # Toolchain environment if target_distro_version in [DistroVersion.IOS_7_0, DistroVersion.IOS_7_1, DistroVersion.IOS_8_0, DistroVersion.IOS_8_1]: os.environ['CC']= 'clang' os.environ['CXX']= 'clang++' extra_cflags += ' -Wno-error=format-nonliteral -Wno-error=implicit-function-declaration ' else: os.environ['CC']= 'llvm-gcc-4.2' os.environ['CXX']= 'llvm-g++-4.2' os.environ['PATH'] = '%s:%s' % (_toolchain_root, os.environ['PATH']) os.environ['OBJC'] = os.environ['CC'] os.environ['CPP']= "%s -E" % os.environ['CC'] os.environ['CXXPP']= os.environ['CPP'] os.environ['LD']= 'ld' os.environ['AR']= 'ar' os.environ['NM']= 'nm' os.environ['NMEDIT']= 'nmedit' os.environ['RANLIB']= 'ranlib' os.environ['AS']= 'as' os.environ['GAS']= '%s %s' % ('gas-preprocessor.pl', os.environ['CC']) if ios_platform == 'iPhoneOS': os.environ['CFLAGS'] = '%s -isysroot %s -miphoneos-version-min=%s %s' %(arch_cflags, sysroot, min_version, extra_cflags) os.environ['LDFLAGS'] = '%s -isysroot %s -miphoneos-version-min=%s -Wl,-iphoneos_version_min,%s -Wl,-undefined,error -Wl,-headerpad_max_install_names' %(arch_cflags, sysroot, min_version, min_version) else: os.environ['CFLAGS'] = '%s -isysroot %s -mios-simulator-version-min=%s %s' %(arch_cflags, sysroot, min_version, extra_cflags) os.environ['LDFLAGS'] = '%s -isysroot %s -mios-simulator-version-min=%s -Wl,-ios_simulator_version_min,%s -Wl,-undefined,error -Wl,-headerpad_max_install_names' %(arch_cflags, sysroot, min_version, min_version) os.environ['OBJCFLAGS'] = os.environ['CFLAGS'] os.environ['OBJLDFLAGS'] = os.environ['LDFLAGS'] os.environ['CPPFLAGS'] = '%s -isysroot %s' % (arch_cflags, sysroot) os.environ['CXXFLAGS'] = os.environ['CFLAGS'] if ios_platform == "iPhoneOS": simulator_headers = '/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator%s.sdk/usr/include' % v for missing_header in ["bzlib.h", "crt_externs.h"]: missing_path = os.path.join(sysroot, "usr", "include", missing_header) if not os.path.lexists(missing_path): # FIXME This is not smart especially as we need to sudo print "We need to create a syslink between %s and %s as they are missing in the device SDK" %(os.path.join(simulator_headers, missing_header), missing_path) shell.call("sudo ln -s %s %s" %(os.path.join(simulator_headers, missing_header), missing_path)) if use_ccache: os.environ['CC'] = 'ccache %s' % os.environ['CC'] os.environ['CXX'] = 'ccache %s' % os.environ['CXX'] # For GLib os.environ['glib_cv_stack_grows'] = 'yes' os.environ['glib_cv_uscore'] = 'no' os.environ['ac_cv_func_posix_getpwuid_r'] = 'yes' os.environ['ac_cv_func_posix_getgrgid_r'] = 'yes' os.environ['gt_cv_c_wchar_t'] = 'no' os.environ['ac_cv_func__NSGetEnviron'] = 'no' # For pixman os.environ['ac_cv_tls'] = 'none'