[test-suite] r187181 - [PowerPC] Support powerpc64le as a syntax-checking target.

Bill Schmidt wschmidt at linux.vnet.ibm.com
Thu Jul 25 18:36:26 PDT 2013


Author: wschmidt
Date: Thu Jul 25 20:36:25 2013
New Revision: 187181

URL: http://llvm.org/viewvc/llvm-project?rev=187181&view=rev
Log:
[PowerPC] Support powerpc64le as a syntax-checking target.

This patch modifies the config.guess file to do the appropriate thing
on a system identifying itself as powerpc64le Linux.  As there
currently is no such system, there is nothing to test.  This is done
for completeness to accompany the LLVM and Clang patches to support
powerpc64le as a syntax-checking target.

Modified:
    test-suite/trunk/autoconf/config.guess

Modified: test-suite/trunk/autoconf/config.guess
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/autoconf/config.guess?rev=187181&r1=187180&r2=187181&view=diff
==============================================================================
--- test-suite/trunk/autoconf/config.guess (original)
+++ test-suite/trunk/autoconf/config.guess Thu Jul 25 20:36:25 2013
@@ -949,6 +949,9 @@ EOF
     ppc64:Linux:*:*)
 	echo powerpc64-unknown-linux-gnu
 	exit ;;
+    ppc64le:Linux:*:*)
+	echo powerpc64le-unknown-linux-gnu
+	exit ;;
     ppc:Linux:*:*)
 	echo powerpc-unknown-linux-gnu
 	exit ;;





More information about the llvm-commits mailing list