From 94ea65ec2e6c230c136c1f78731c7ce745becbd2 Mon Sep 17 00:00:00 2001 From: James Turner <zakalawe@mac.com> Date: Mon, 28 Jan 2013 16:09:56 +0000 Subject: [PATCH] Build Mac release build with debugInfo. (Experimental, let's see if this helps testing) --- hudson_mac_build_release.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hudson_mac_build_release.sh b/hudson_mac_build_release.sh index ae2afac..8375ee5 100755 --- a/hudson_mac_build_release.sh +++ b/hudson_mac_build_release.sh @@ -21,7 +21,7 @@ pushd sgBuild cmake -DCMAKE_INSTALL_PREFIX:PATH=$WORKSPACE/dist -G Xcode ../simgear # compile -xcodebuild -configuration Release -target install build +xcodebuild -configuration RelWithDebInfo -target install build if [ $? -ne '0' ]; then echo "make simgear failed" @@ -35,7 +35,7 @@ echo "Starting on FlightGear" pushd fgBuild cmake -DCMAKE_INSTALL_PREFIX:PATH=$WORKSPACE/dist -G Xcode ../flightgear -xcodebuild -configuration Release -target install build +xcodebuild -configuration RelWithDebInfo -target install build if [ $? -ne '0' ]; then echo "make flightgear failed"