Commit 8cd0aeaa authored by Felix Paul Kühne's avatar Felix Paul Kühne

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

parent 145f4587
...@@ -74,10 +74,10 @@ info "Building libvlc for iOS" ...@@ -74,10 +74,10 @@ info "Building libvlc for iOS"
if [ "$PLATFORM" = "Simulator" ]; then if [ "$PLATFORM" = "Simulator" ]; then
TARGET="i686-apple-darwin11" TARGET="i686-apple-darwin11"
ARCH="i386" ARCH="i386"
OPTIM="-O3" OPTIM="-O3 -g"
else else
TARGET="arm-apple-darwin11" TARGET="arm-apple-darwin11"
ARCH="armv7" ARCH="armv7 -g"
fi fi
info "Using ${ARCH} with SDK version ${SDK_VERSION}" info "Using ${ARCH} with SDK version ${SDK_VERSION}"
...@@ -238,7 +238,7 @@ CONTRIB_DIR=${VLCROOT}/contrib-ios-${TARGET} \ ...@@ -238,7 +238,7 @@ CONTRIB_DIR=${VLCROOT}/contrib-ios-${TARGET} \
${VLCROOT}/configure \ ${VLCROOT}/configure \
--prefix="${PREFIX}" \ --prefix="${PREFIX}" \
--host="${TARGET}" \ --host="${TARGET}" \
--enable-debug \ --disable-debug \
--enable-static \ --enable-static \
--disable-macosx \ --disable-macosx \
--disable-macosx-vout \ --disable-macosx-vout \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment