[vlc-commits] ios: don't compile with --enable-debug with -g only by default

Felix Paul Kühne git at videolan.org
Sat Jan 19 18:50:13 CET 2013


vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Sat Jan 19 18:44:02 2013 +0100| [8cd0aeaa12a2a4e2f75ba21c27ec0d5610ea84cf] | committer: Felix Paul Kühne

ios: don't compile with --enable-debug with -g only by default

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=8cd0aeaa12a2a4e2f75ba21c27ec0d5610ea84cf
---

 extras/package/ios/build.sh |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/extras/package/ios/build.sh b/extras/package/ios/build.sh
index 91fa785..1431e3c 100755
--- a/extras/package/ios/build.sh
+++ b/extras/package/ios/build.sh
@@ -74,10 +74,10 @@ info "Building libvlc for iOS"
 if [ "$PLATFORM" = "Simulator" ]; then
     TARGET="i686-apple-darwin11"
     ARCH="i386"
-    OPTIM="-O3"
+    OPTIM="-O3 -g"
 else
     TARGET="arm-apple-darwin11"
-    ARCH="armv7"
+    ARCH="armv7 -g"
 fi
 
 info "Using ${ARCH} with SDK version ${SDK_VERSION}"
@@ -238,7 +238,7 @@ CONTRIB_DIR=${VLCROOT}/contrib-ios-${TARGET} \
 ${VLCROOT}/configure \
     --prefix="${PREFIX}" \
     --host="${TARGET}" \
-    --enable-debug \
+    --disable-debug \
     --enable-static \
     --disable-macosx \
     --disable-macosx-vout \



More information about the vlc-commits mailing list