diff options
author | John Wiegley <johnw@newartisans.com> | 2004-09-06 05:38:32 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2004-09-06 05:38:32 -0400 |
commit | fcaaa372019b525980e40b148a1d542ab3acced9 (patch) | |
tree | 568e2715bdc27817c39d25062bd1b22b5812f244 /acprep | |
parent | 305c6159afe727c6e6f2f49c37789922df1a5a98 (diff) | |
download | fork-ledger-fcaaa372019b525980e40b148a1d542ab3acced9.tar.gz fork-ledger-fcaaa372019b525980e40b148a1d542ab3acced9.tar.bz2 fork-ledger-fcaaa372019b525980e40b148a1d542ab3acced9.zip |
switch from using deque back to list; affects speed by up to 30%!
Diffstat (limited to 'acprep')
-rwxr-xr-x | acprep | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -22,8 +22,7 @@ if [ "$1" = "--debug" ]; then CXXFLAGS="-g" --enable-debug --disable-shared elif [ "$1" = "--opt" ]; then ./configure CPPFLAGS="$INCDIRS" LDFLAGS="$LIBDIRS" \ - CXXFLAGS="-fomit-frame-pointer -fastf -mcpu=7450 -fPIC" \ - --enable-standalone --disable-shared + CXXFLAGS="-fomit-frame-pointer -fastf -mcpu=7450" --disable-shared elif [ "$1" = "--perf" ]; then ./configure CPPFLAGS="$INCDIRS" LDFLAGS="$LIBDIRS" CXXFLAGS="-g -pg" fi |