From eaa2bdf444282b6f1d1b6b453d390fdfa3243b02 Mon Sep 17 00:00:00 2001 From: kueller Date: Wed, 7 May 2008 13:08:17 +0000 Subject: [PATCH] Beim 64 Bit Build darf march nicht per buildoptions gesetzt sein git-svn-id: svn://svn.compuextreme.de/Viitor/V962/ViitorMake@4481 504e572c-2e33-0410-9681-be2bf7408885 --- BaseBuild/crosschain/glibc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/BaseBuild/crosschain/glibc b/BaseBuild/crosschain/glibc index ae195b3..b5b2b27 100644 --- a/BaseBuild/crosschain/glibc +++ b/BaseBuild/crosschain/glibc @@ -136,7 +136,9 @@ mk() { --with-binutils=/cross-tools/bin \ --with-headers=/tools/include \ --cache-file=config.cache - echo "CFLAGS += -march=$ARCH" >configparms + if [ ! ${MK64BIT} == "true" ]; then + echo "CFLAGS += -march=$ARCH" >configparms + fi make -j $NUMCPU make -j $NUMCPU install }