RELEASE: GStreamer Core, Plugins and binaries 1.2.1
kashif at devdesks.com
kashif at devdesks.com
Mon Nov 25 23:42:35 PST 2013
in ios-cross-universal.cbc file i changed this line
universal_archs=[Architecture.ARMv7, Architecture.X86]
to
universal_archs=[Architecture.ARMv7, Architecture.X86, Architecture.ARMv7s]
added cross-ios-armv7s.cbc file with following contents
from cerbero.config import Platform, Architecture, Distro, DistroVersion
target_platform=Platform.IOS
target_arch=Architecture.ARMv7s
target_distro=Distro.IOS
target_distro_version=DistroVersion.IOS_6_1
do i need to do anything else ? somehwere else like ios.config like where i
suspect i had to add something here
if 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'
extra_cflags='-D__IPHONE_OS_VERSION_MIN_REQUIRED=%s0000' %
min_version.replace('.', '')
elif target_arch == Architecture.UNIVERSAL:
arch_cflags=''
else:
raise FatalError("Arch %s not supported" % target_arch)
--
View this message in context: http://gstreamer-devel.966125.n4.nabble.com/RELEASE-GStreamer-Core-Plugins-and-binaries-1-2-1-tp4663220p4663583.html
Sent from the GStreamer-devel mailing list archive at Nabble.com.
More information about the gstreamer-devel
mailing list