diff options
author | John Wiegley <johnw@newartisans.com> | 2004-09-27 18:08:48 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2004-09-27 18:08:48 -0400 |
commit | ba2c04072c2f6b1fc50dc8ff3a41098ea6e634e6 (patch) | |
tree | f32580aa14d2628f3fc27e663f8778c30632ca34 /acprep | |
parent | eb6861e192281b612e115c8b3bf240e574bca835 (diff) | |
download | fork-ledger-ba2c04072c2f6b1fc50dc8ff3a41098ea6e634e6.tar.gz fork-ledger-ba2c04072c2f6b1fc50dc8ff3a41098ea6e634e6.tar.bz2 fork-ledger-ba2c04072c2f6b1fc50dc8ff3a41098ea6e634e6.zip |
fixed several segfaults (using new option-scrambler test harness)
Diffstat (limited to 'acprep')
-rwxr-xr-x | acprep | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -26,6 +26,10 @@ elif [ "$1" = "--opt" ]; then elif [ "$1" = "--flat-opt" ]; then ./configure CPPFLAGS="$INCDIRS" LDFLAGS="$LIBDIRS" \ CXXFLAGS="-fomit-frame-pointer -fastf -mcpu=7450" --disable-shared +elif [ "$1" = "--safe-opt" ]; then + ./configure CPPFLAGS="$INCDIRS" LDFLAGS="$LIBDIRS" \ + CXXFLAGS="-fomit-frame-pointer -fastf -mcpu=7450 -DDEBUG_LEVEL=1" \ + --disable-shared elif [ "$1" = "--perf" ]; then ./configure CPPFLAGS="$INCDIRS" LDFLAGS="$LIBDIRS" CXXFLAGS="-g -pg" fi |