Blame SOURCES/7.4.048

d6ba96
To: vim_dev@googlegroups.com
d6ba96
Subject: Patch 7.4.048
d6ba96
Fcc: outbox
d6ba96
From: Bram Moolenaar <Bram@moolenaar.net>
d6ba96
Mime-Version: 1.0
d6ba96
Content-Type: text/plain; charset=UTF-8
d6ba96
Content-Transfer-Encoding: 8bit
d6ba96
------------
d6ba96
d6ba96
Patch 7.4.048
d6ba96
Problem:    Recent clang version complains about -fno-strength-reduce.
d6ba96
Solution:   Add a configure check for the clang version. (Kazunobu Kuriyama)
d6ba96
Files:	    src/configure.in, src/auto/configure
d6ba96
d6ba96
d6ba96
*** ../vim-7.4.047/src/configure.in	2013-08-04 20:00:50.000000000 +0200
d6ba96
--- src/configure.in	2013-10-02 17:56:25.000000000 +0200
d6ba96
***************
d6ba96
*** 62,67 ****
d6ba96
--- 62,90 ----
d6ba96
    fi
d6ba96
  fi
d6ba96
  
d6ba96
+ dnl clang-500.2.75 or around has abandoned -f[no-]strength-reduce and issues a
d6ba96
+ dnl warning when that flag is passed to.  Accordingly, adjust CFLAGS based on
d6ba96
+ dnl the version number of the clang in use.
d6ba96
+ dnl Note that this does not work to get the version of clang 3.1 or 3.2.
d6ba96
+ AC_MSG_CHECKING(for recent clang version)
d6ba96
+ CLANG_VERSION_STRING=`"$CC" --version 2>/dev/null | sed  -n -e 's/^.*clang.*\([[0-9]][[0-9]]*\.[[0-9]][[0-9]]*\.[[0-9]][[0-9]]*\).*$/\1/p'`
d6ba96
+ if test x"$CLANG_VERSION_STRING" != x"" ; then
d6ba96
+   CLANG_MAJOR=`echo "$CLANG_VERSION_STRING" | sed -n -e 's/\([[0-9]][[0-9]]*\)\.[[0-9]][[0-9]]*\.[[0-9]][[0-9]]*/\1/p'`
d6ba96
+   CLANG_MINOR=`echo "$CLANG_VERSION_STRING" | sed -n -e 's/[[0-9]][[0-9]]*\.\([[0-9]][[0-9]]*\)\.[[0-9]][[0-9]]*/\1/p'`
d6ba96
+   CLANG_REVISION=`echo "$CLANG_VERSION_STRING" | sed -n -e 's/[[0-9]][[0-9]]*\.[[0-9]][[0-9]]*\.\([[0-9]][[0-9]]*\)/\1/p'`
d6ba96
+   CLANG_VERSION=`expr $CLANG_MAJOR '*' 1000000 '+' $CLANG_MINOR '*' 1000 '+' $CLANG_REVISION`
d6ba96
+   AC_MSG_RESULT($CLANG_VERSION)
d6ba96
+   dnl If you find the same issue with versions earlier than 500.2.75,
d6ba96
+   dnl change the constant 500002075 below appropriately.  To get the
d6ba96
+   dnl integer corresponding to a version number, refer to the
d6ba96
+   dnl definition of CLANG_VERSION above.
d6ba96
+   if test "$CLANG_VERSION" -ge 500002075 ; then
d6ba96
+     CFLAGS=`echo "$CFLAGS" | sed -n -e 's/-fno-strength-reduce/ /p'`
d6ba96
+   fi
d6ba96
+ else
d6ba96
+   AC_MSG_RESULT(no)
d6ba96
+ fi
d6ba96
+ 
d6ba96
  dnl If configure thinks we are cross compiling, there might be something
d6ba96
  dnl wrong with the CC or CFLAGS settings, give a useful warning message
d6ba96
  if test "$cross_compiling" = yes; then
d6ba96
*** ../vim-7.4.047/src/auto/configure	2013-08-04 20:01:06.000000000 +0200
d6ba96
--- src/auto/configure	2013-10-02 17:56:52.000000000 +0200
d6ba96
***************
d6ba96
*** 3989,3994 ****
d6ba96
--- 3989,4012 ----
d6ba96
    fi
d6ba96
  fi
d6ba96
  
d6ba96
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for recent clang version" >&5
d6ba96
+ $as_echo_n "checking for recent clang version... " >&6; }
d6ba96
+ CLANG_VERSION_STRING=`"$CC" --version 2>/dev/null | sed  -n -e 's/^.*clang.*\([0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\).*$/\1/p'`
d6ba96
+ if test x"$CLANG_VERSION_STRING" != x"" ; then
d6ba96
+   CLANG_MAJOR=`echo "$CLANG_VERSION_STRING" | sed -n -e 's/\([0-9][0-9]*\)\.[0-9][0-9]*\.[0-9][0-9]*/\1/p'`
d6ba96
+   CLANG_MINOR=`echo "$CLANG_VERSION_STRING" | sed -n -e 's/[0-9][0-9]*\.\([0-9][0-9]*\)\.[0-9][0-9]*/\1/p'`
d6ba96
+   CLANG_REVISION=`echo "$CLANG_VERSION_STRING" | sed -n -e 's/[0-9][0-9]*\.[0-9][0-9]*\.\([0-9][0-9]*\)/\1/p'`
d6ba96
+   CLANG_VERSION=`expr $CLANG_MAJOR '*' 1000000 '+' $CLANG_MINOR '*' 1000 '+' $CLANG_REVISION`
d6ba96
+   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CLANG_VERSION" >&5
d6ba96
+ $as_echo "$CLANG_VERSION" >&6; }
d6ba96
+           if test "$CLANG_VERSION" -ge 500002075 ; then
d6ba96
+     CFLAGS=`echo "$CFLAGS" | sed -n -e 's/-fno-strength-reduce/ /p'`
d6ba96
+   fi
d6ba96
+ else
d6ba96
+   { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
d6ba96
+ $as_echo "no" >&6; }
d6ba96
+ fi
d6ba96
+ 
d6ba96
  if test "$cross_compiling" = yes; then
d6ba96
    { $as_echo "$as_me:${as_lineno-$LINENO}: result: cannot compile a simple program; if not cross compiling check CC and CFLAGS" >&5
d6ba96
  $as_echo "cannot compile a simple program; if not cross compiling check CC and CFLAGS" >&6; }
d6ba96
*** ../vim-7.4.047/src/version.c	2013-10-02 16:46:23.000000000 +0200
d6ba96
--- src/version.c	2013-10-02 17:19:31.000000000 +0200
d6ba96
***************
d6ba96
*** 740,741 ****
d6ba96
--- 740,743 ----
d6ba96
  {   /* Add new patch number below this line */
d6ba96
+ /**/
d6ba96
+     48,
d6ba96
  /**/
d6ba96
d6ba96
-- 
d6ba96
I have to exercise early in the morning before my brain
d6ba96
figures out what I'm doing.
d6ba96
d6ba96
 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
d6ba96
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
d6ba96
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
d6ba96
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///