summaryrefslogtreecommitdiff
path: root/BUILD/check-cpu
diff options
context:
space:
mode:
authorunknown <df@pippilotta.erinye.com>2007-03-19 16:15:47 +0100
committerunknown <df@pippilotta.erinye.com>2007-03-19 16:15:47 +0100
commitf52dcd1a85c41540df3957c78f975e40e57cd731 (patch)
treead976cc5024ebba65bbf359c30bfbbd3ee78b624 /BUILD/check-cpu
parentf8d58c1d1f89a2147466d11feeb54ca3c217c077 (diff)
downloadmariadb-git-f52dcd1a85c41540df3957c78f975e40e57cd731.tar.gz
Modify BUG#26701 patch and a different location to also use the correct arguments for GCC 5 and 6.
BUILD/check-cpu: case -> if ... -lt
Diffstat (limited to 'BUILD/check-cpu')
-rwxr-xr-xBUILD/check-cpu26
1 files changed, 11 insertions, 15 deletions
diff --git a/BUILD/check-cpu b/BUILD/check-cpu
index 8c41b79a126..f1c9bc51dc5 100755
--- a/BUILD/check-cpu
+++ b/BUILD/check-cpu
@@ -166,27 +166,23 @@ check_cpu () {
# different gcc backends (and versions) have different CPU flags
case `gcc -dumpmachine` in
i?86-*)
- case "$cc_verno" in
- 3.4*|3.5*|4.*)
- check_cpu_args='-mtune=$cpu_arg -march=$cpu_arg'
- ;;
- *)
- check_cpu_args='-mcpu=$cpu_arg -march=$cpu_arg'
- ;;
- esac
+ if test "$cc_verno" -lt "3.4"
+ then
+ check_cpu_args='-mcpu=$cpu_arg'
+ else
+ check_cpu_args='-mtune=$cpu_arg'
+ fi
;;
ppc-*)
check_cpu_args='-mcpu=$cpu_arg -mtune=$cpu_arg'
;;
x86_64-*)
- case "$cc_verno" in
- 3.4*|3.5*|4.*)
- check_cpu_args='-mtune=$cpu_arg'
- ;;
- *)
+ if test "$cc_verno" -lt "3.4"
+ then
check_cpu_args='-mcpu=$cpu_arg'
- ;;
- esac
+ else
+ check_cpu_args='-mtune=$cpu_arg'
+ fi
;;
*)
check_cpu_cflags=""