From: Ken Raeburn Date: Thu, 7 Aug 2008 21:46:34 +0000 (+0000) Subject: New config option to enable size optimizations X-Git-Tag: krb5-1.7-alpha1~509 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b27cda4fcd995f65eb8141532f25b12fa3da96d6;p=krb5.git New config option to enable size optimizations git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@20636 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/aclocal.m4 b/src/aclocal.m4 index 10803cc54..859529e5b 100644 --- a/src/aclocal.m4 +++ b/src/aclocal.m4 @@ -1,5 +1,5 @@ AC_PREREQ(2.52) -AC_COPYRIGHT([Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007 +AC_COPYRIGHT([Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008 Massachusetts Institute of Technology. ]) dnl @@ -610,11 +610,24 @@ if test "$GCC" = yes; then krb5_cv_prog_gnu_ld=yes fi fi]) +AC_ARG_WITH([size-optimizations], +[ --with-size-optimizations enable a few optimizations to reduce code size + possibly at some run-time cost], +, +withval=no) +if test "$withval" = yes; then + AC_DEFINE(CONFIG_SMALL,1,[Define to reduce code size even if it means more cpu usage]) +fi # maybe add -Waggregate-return, or can we assume that actually works by now? # -Wno-long-long, if needed, for k5-platform.h without inttypes.h etc. extra_gcc_warn_opts="-Wall -Wcast-qual -Wcast-align -Wconversion -Wshadow" # -Wmissing-prototypes if test "$GCC" = yes ; then + # Putting this here means we get -Os after -O2, which works. + if test "$with_size_optimizations" = yes; then + AC_MSG_NOTICE(adding -Os optimization option) + CFLAGS="$CFLAGS -Os" + fi if test "x$krb5_ac_cflags_set" = xset ; then AC_MSG_NOTICE(not adding extra gcc warning flags because CFLAGS was set) else @@ -629,7 +642,7 @@ if test "$GCC" = yes ; then fi if test "$ac_cv_cxx_compiler_gnu" = yes; then if test "x$krb5_ac_cxxflags_set" = xset ; then - AC_MSG_NOTICE(not adding extra g++ warnings because CXXFLAGS was sent) + AC_MSG_NOTICE(not adding extra g++ warnings because CXXFLAGS was set) else AC_MSG_NOTICE(adding extra warning flags for g++) CXXFLAGS="$CXXFLAGS $extra_gcc_warn_opts"