ref: 9409e3805022bb99be1623535da13dcdc20fa0dd
parent: 1312a7a2e2ce740325ea3dde1a149d07e896ee42
author: Scott LaVarnway <slavarnway@google.com>
date: Fri Apr 15 11:59:21 EDT 2011
added -fomit-frame-pointer flag for gcc builds According to the docs, this should have been enabled, but the disassembled output shows otherwise. This improved the encode/decode performance. Change-Id: I45ad7e6d299b89ac3166d7ef7da75b74994344c6
--- a/build/make/configure.sh
+++ b/build/make/configure.sh
@@ -884,6 +884,8 @@
link_with_cc=gcc
tune_cflags="-march="
setup_gnu_toolchain
+ #for 32 bit x86 builds, -O3 did not turn on this flag
+ enabled optimizations && check_add_cflags -fomit-frame-pointer
;;
esac
--
⑨