[llvm] r227090 - Teach the autoconf machinery about the PS4 triple.

Alex Rosenberg alexr at leftfield.org
Mon Jan 26 07:25:05 PST 2015


Author: alexr
Date: Mon Jan 26 09:25:05 2015
New Revision: 227090

URL: http://llvm.org/viewvc/llvm-project?rev=227090&view=rev
Log:
Teach the autoconf machinery about the PS4 triple.

(I think the last checkin, r227060, got lost from the mailing lists because of the (R) in the comment.)

Modified:
    llvm/trunk/autoconf/config.sub
    llvm/trunk/autoconf/configure.ac

Modified: llvm/trunk/autoconf/config.sub
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/autoconf/config.sub?rev=227090&r1=227089&r2=227090&view=diff
==============================================================================
--- llvm/trunk/autoconf/config.sub (original)
+++ llvm/trunk/autoconf/config.sub Mon Jan 26 09:25:05 2015
@@ -1489,6 +1489,8 @@ case $os in
 		;;
 	-nacl*)
 		;;
+	-ps4)
+		;;
 	-none)
 		;;
 	*)

Modified: llvm/trunk/autoconf/configure.ac
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/autoconf/configure.ac?rev=227090&r1=227089&r2=227090&view=diff
==============================================================================
--- llvm/trunk/autoconf/configure.ac (original)
+++ llvm/trunk/autoconf/configure.ac Mon Jan 26 09:25:05 2015
@@ -369,6 +369,8 @@ AC_CACHE_CHECK([type of operating system
     llvm_cv_target_os_type="NativeClient" ;;
   *-unknown-eabi*)
     llvm_cv_target_os_type="Freestanding" ;;
+  *-*-ps4)
+    llvm_cv_target_os_type="PS4" ;;
   *)
     llvm_cv_target_os_type="Unknown" ;;
 esac])





More information about the llvm-commits mailing list