From: Henning Heinold Date: Fri, 20 Jun 2008 20:37:22 +0000 (+0000) Subject: *fix -m options now using -march which is fine with gcc-3 and gcc-4 X-Git-Tag: Release-2010-05/1~6663^2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=39230785d9040115c7aad3e05ed8c9e11a87a351;p=openembedded.git *fix -m options now using -march which is fine with gcc-3 and gcc-4 according to the documentation --- diff --git a/conf/machine/include/tune-pentium.inc b/conf/machine/include/tune-pentium.inc index fbefe5bd89..008d63daa8 100644 --- a/conf/machine/include/tune-pentium.inc +++ b/conf/machine/include/tune-pentium.inc @@ -1,4 +1,4 @@ -TARGET_CC_ARCH = "-mcpu=pentium" +TARGET_CC_ARCH = "-march=pentium" PACKAGE_ARCH = "i586" FEED_ARCH = "i586" diff --git a/conf/machine/include/tune-pentiumpro.inc b/conf/machine/include/tune-pentiumpro.inc index 6b110cc0b6..3406bb0c71 100644 --- a/conf/machine/include/tune-pentiumpro.inc +++ b/conf/machine/include/tune-pentiumpro.inc @@ -1,4 +1,4 @@ -TARGET_CC_ARCH = "-mcpu=pentiumpro" +TARGET_CC_ARCH = "-march=pentiumpro" PACKAGE_ARCH = "i686" FEED_ARCH = "i686"