diff options
author | unknown <df@pippilotta.erinye.com> | 2007-03-21 15:52:24 +0100 |
---|---|---|
committer | unknown <df@pippilotta.erinye.com> | 2007-03-21 15:52:24 +0100 |
commit | 578e45917ded2b827f43acde7f9310ecc5ab2e6d (patch) | |
tree | d08beeb174b3a820b1ed0530918f0fb1ff0dea0f /BUILD/check-cpu | |
parent | 3c1f99e3da15a80ab0ee819df14ed4dbe4cb4965 (diff) | |
parent | 983e1f5acb90ef3db021f393b7d294017f2da926 (diff) | |
download | mariadb-git-578e45917ded2b827f43acde7f9310ecc5ab2e6d.tar.gz |
Merge pippilotta.erinye.com:/shared/home/df/mysql/build/mysql-5.0-build-work-26701
into pippilotta.erinye.com:/shared/home/df/mysql/build/mysql-5.1-build-work-26701
BUILD/check-cpu:
Auto merged
Diffstat (limited to 'BUILD/check-cpu')
-rwxr-xr-x | BUILD/check-cpu | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/BUILD/check-cpu b/BUILD/check-cpu index 155ddd6ecde..2c80bc093b5 100755 --- a/BUILD/check-cpu +++ b/BUILD/check-cpu @@ -160,13 +160,18 @@ check_cpu () { cc_ver=`$cc --version | sed 1q` cc_verno=`echo $cc_ver | sed -e 's/^.*gcc/gcc/g; s/[^0-9. ]//g; s/^ *//g; s/ .*//g'` + set -- `echo $cc_verno | tr '.' ' '` + cc_major=$1 + cc_minor=$2 + cc_patch=$3 + cc_comp=`expr $cc_major '*' 100 '+' $cc_minor` case "$cc_ver--$cc_verno" in *GCC*) # different gcc backends (and versions) have different CPU flags case `gcc -dumpmachine` in i?86-*) - if test "$cc_verno" -lt "3.4" + if test "$cc_comp" -lt 304 then check_cpu_args='-mcpu=$cpu_arg' else @@ -177,7 +182,7 @@ check_cpu () { check_cpu_args='-mcpu=$cpu_arg -mtune=$cpu_arg' ;; x86_64-*) - if test "$cc_verno" -lt "3.4" + if test "$cc_comp" -lt 304 then check_cpu_args='-mcpu=$cpu_arg' else |