From 8306859b49af002f9b34ea7f6baa76a8744247c0 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Thu, 10 Jul 2003 16:28:27 +0000 Subject: [PATCH] target_cpu is much more appropriate for -march than host_cpu --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 463bd2675..00b7e8a4f 100644 --- a/configure.ac +++ b/configure.ac @@ -1325,9 +1325,9 @@ if test "x$optimize" = xyes; then ) case "$arch" in auto) - case "${host_cpu}" in + case "${target_cpu}" in i?86) - MORE_CFLAGS="-march=${host_cpu}" + MORE_CFLAGS="-march=${target_cpu}" ;; *) MORE_CFLAGS=""