summaryrefslogtreecommitdiff
path: root/acprep
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2004-09-06 05:38:32 -0400
committerJohn Wiegley <johnw@newartisans.com>2004-09-06 05:38:32 -0400
commitfcaaa372019b525980e40b148a1d542ab3acced9 (patch)
tree568e2715bdc27817c39d25062bd1b22b5812f244 /acprep
parent305c6159afe727c6e6f2f49c37789922df1a5a98 (diff)
downloadfork-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-xacprep3
1 files changed, 1 insertions, 2 deletions
diff --git a/acprep b/acprep
index a1a5ea16..aa3d01c0 100755
--- a/acprep
+++ b/acprep
@@ -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