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"
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 \
......
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