[llvm-commits] [llvm] r92762 - /llvm/trunk/autoconf/configure.ac

Anton Korobeynikov asl at math.spbu.ru
Tue Jan 5 12:45:14 PST 2010


Author: asl
Date: Tue Jan  5 14:45:13 2010
New Revision: 92762

URL: http://llvm.org/viewvc/llvm-project?rev=92762&view=rev
Log:
Proper deduce z/System LLVM target from target triple when
--enable-targets=host is specified.

Modified:
    llvm/trunk/autoconf/configure.ac

Modified: llvm/trunk/autoconf/configure.ac
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/autoconf/configure.ac?rev=92762&r1=92761&r2=92762&view=diff

==============================================================================
--- llvm/trunk/autoconf/configure.ac (original)
+++ llvm/trunk/autoconf/configure.ac Tue Jan  5 14:45:13 2010
@@ -512,7 +512,7 @@
             PIC16)       TARGETS_TO_BUILD="PIC16 $TARGETS_TO_BUILD" ;;
             XCore)       TARGETS_TO_BUILD="XCore $TARGETS_TO_BUILD" ;;
             MSP430)      TARGETS_TO_BUILD="MSP430 $TARGETS_TO_BUILD" ;;
-            SystemZ)     TARGETS_TO_BUILD="SystemZ $TARGETS_TO_BUILD" ;;
+            s390x)       TARGETS_TO_BUILD="SystemZ $TARGETS_TO_BUILD" ;;
             Blackfin)    TARGETS_TO_BUILD="Blackfin $TARGETS_TO_BUILD" ;;
             *)       AC_MSG_ERROR([Can not set target to build]) ;;
           esac ;;





More information about the llvm-commits mailing list