12345678910111213141516171819202122232425262728293031323334353637 |
- From e9bf490eb79beb2661efb38eb08b47bf5adefea0 Mon Sep 17 00:00:00 2001
- From: =?UTF-8?q?Felix=20Paul=20K=C3=BChne?= <fkuehne@videolan.org>
- Date: Wed, 22 Jan 2014 03:05:48 +0100
- Subject: [PATCH 26/29] extras/ios: simulator doesn't necessarily mean i386
- anymore
- ---
- extras/package/ios/build.sh | 5 ++---
- 1 file changed, 2 insertions(+), 3 deletions(-)
- diff --git a/extras/package/ios/build.sh b/extras/package/ios/build.sh
- index 6e42216..9f57b14 100755
- --- a/extras/package/ios/build.sh
- +++ b/extras/package/ios/build.sh
- @@ -76,8 +76,7 @@ fi
- info "Building libvlc for iOS"
-
- if [ "$PLATFORM" = "Simulator" ]; then
- - TARGET="i686-apple-darwin11"
- - ARCH="i386"
- + TARGET="${ARCH}-apple-darwin11"
- OPTIM="-O3 -g"
- else
- TARGET="arm-apple-darwin11"
- @@ -189,7 +188,7 @@ else
- export ASCPP="xcrun as"
- fi
-
- -../bootstrap --host=${TARGET} --build="i686-apple-darwin10" --prefix=${VLCROOT}/contrib/${TARGET}-${ARCH} --arch=${ARCH} --disable-gpl \
- +../bootstrap --host=x86_64-apple-darwin11 --build=${TARGET} --prefix=${VLCROOT}/contrib/${TARGET}-${ARCH} --arch=${ARCH} --disable-gpl \
- --disable-disc --disable-sout \
- --disable-sdl \
- --disable-SDL_image \
- --
- 1.8.3.4 (Apple Git-47)
|