From 85b1671b4257332ade223d9e167cea0bf0d40fdf Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 8 Feb 2014 14:40:36 +0000 Subject: [PATCH] configure.in: Properly detect platform for SSE2 instructions. * configure.in: add qouting brackets and append wildcard for the rest after target_cpu, to properly detect platform for SSE2 instructions. [ruby-core:60576] [Bug #8358] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44890 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 6 ++++++ configure.in | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index b812349c50..d93824830b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Sat Feb 8 23:40:35 2014 Vit Ondruch + + * configure.in: add qouting brackets and append wildcard for the + rest after target_cpu, to properly detect platform for SSE2 + instructions. [ruby-core:60576] [Bug #8358] + Sat Feb 8 21:44:07 2014 Masaki Matsushita * configure.in: check qsort_r(3) and whether it is GNU version. diff --git a/configure.in b/configure.in index 4da41df606..609d797d76 100644 --- a/configure.in +++ b/configure.in @@ -864,7 +864,7 @@ if test "$GCC" = yes; then [*-darwin*], [ # doesn't seem necessary on Mac OS X ], - [i[4-6]86], [ + [[i[4-6]86*]], [ RUBY_TRY_CFLAGS(-msse2 -mfpmath=sse, [ RUBY_APPEND_OPTION(XCFLAGS, -msse2 -mfpmath=sse) RUBY_TRY_CFLAGS(-mstackrealign, [RUBY_APPEND_OPTION(XCFLAGS, -mstackrealign)])