diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-06-09 17:18:53 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-06-09 17:18:53 +0000 |
commit | f2420be7f1bc792488ae98a266cbd951c51ee336 (patch) | |
tree | 73ad5495dbba91b683eba93b4b2b9961fd2472f5 /Rules.mak | |
parent | f4c81223c2228bbc34ba7bb63cfb079f9c0bd1e2 (diff) |
- Improve prerequisites and avoid spurious reconfigurations.
More details: http://uclibc.org/lists/uclibc/2008-June/019509.html
Diffstat (limited to 'Rules.mak')
-rw-r--r-- | Rules.mak | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -44,6 +44,8 @@ TAR = tar STRIP_FLAGS ?= -x -R .note -R .comment +UNIFDEF := $(top_builddir)extra/scripts/unifdef -UUCLIBC_INTERNAL + # Select the compiler needed to build binaries for your development system HOSTCC = gcc BUILD_CFLAGS = -O2 -Wall @@ -175,7 +177,7 @@ ifeq ($(TARGET_ARCH),i386) # -O1 -march=pentium3, -Os -msse etc are known to be affected. # TODO: conditionally bump to 4 # (see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13685) - OPTIMIZATION+=$(call check_gcc,-mpreferred-stack-boundary=2,) + OPTIMIZATION+=$(call check_gcc,-mpreferred-stack-boundary=4,) # Choice of alignment (please document why!) # -falign-labels: in-line labels |