summaryrefslogtreecommitdiff
path: root/BUILD/SETUP.sh
diff options
context:
space:
mode:
authorunknown <sasha@mysql.sashanet.com>2001-05-25 16:26:52 -0600
committerunknown <sasha@mysql.sashanet.com>2001-05-25 16:26:52 -0600
commit714640bfb9f725f05567c58fac34612e3e99df33 (patch)
treeddf1988dea52361874185c7bf3258eace91fd517 /BUILD/SETUP.sh
parentf2c0436616634fc55613114a65e38eec1bfcc010 (diff)
downloadmariadb-git-714640bfb9f725f05567c58fac34612e3e99df33.tar.gz
BUILD/SETUP.sh@1.9
removed -ffixed-ebp from reckless flags BUILD/compile-pentium@1.16 use fast, not reckless flags for binary distribuition sql/share/english/errmsg.txt@1.24 Point the user to the manual when he gets aborted connection message BUILD/SETUP.sh: removed -ffixed-ebp from reckless flags BUILD/compile-pentium: use fast, not reckless flags for binary distribuition sql/share/english/errmsg.txt: Point the user to the manual when he gets aborted connection message BitKeeper/etc/logging_ok: Logging to logging@openlogging.org accepted
Diffstat (limited to 'BUILD/SETUP.sh')
-rw-r--r--BUILD/SETUP.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/BUILD/SETUP.sh b/BUILD/SETUP.sh
index 1f45c5c18cb..778625e9e75 100644
--- a/BUILD/SETUP.sh
+++ b/BUILD/SETUP.sh
@@ -43,8 +43,11 @@ alpha_cflags="-mcpu=ev6 -Wa,-mev6" # Not used yet
pentium_cflags="-mpentiumpro"
sparc_cflags=""
+# be as fast as we can be without losing our ability to backtrace
fast_cflags="-O3 -fno-omit-frame-pointer"
-reckless_cflags="-O3 -fomit-frame-pointer -ffixed-ebp"
+# this is one is for someone who thinks 1% speedup is worth not being
+# able to backtrace
+reckless_cflags="-O3 -fomit-frame-pointer "
debug_cflags="-DEXTRA_DEBUG -DFORCE_INIT_OF_VARS -DSAFEMALLOC -DSAFE_MUTEX -O2"
base_cxxflags="-felide-constructors -fno-exceptions -fno-rtti"