From: Jay Freeman (saurik) Date: Wed, 6 Jun 2012 21:27:32 +0000 (-0700) Subject: Add a debug.sh script that configures with -g3 -O0. X-Git-Tag: v0.9.456~17 X-Git-Url: https://git.saurik.com/cycript.git/commitdiff_plain/92dbfd6659bb51f2e7525347cc870047d4cac2ba Add a debug.sh script that configures with -g3 -O0. --- diff --git a/debug.sh b/debug.sh new file mode 100755 index 0000000..e50a1a9 --- /dev/null +++ b/debug.sh @@ -0,0 +1,6 @@ +#!/bin/bash +flags='-g3 -O0' +export CFLAGS=$flags +export CXXFLAGS=$flags +export OBJCXXFLAGS=$flags +./configure