From 92dbfd6659bb51f2e7525347cc870047d4cac2ba Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Wed, 6 Jun 2012 14:27:32 -0700 Subject: [PATCH] Add a debug.sh script that configures with -g3 -O0. --- debug.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 debug.sh 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 -- 2.49.0