Teach the autoconf machinery about the PS4 triple.
authorAlex Rosenberg <alexr@leftfield.org>
Mon, 26 Jan 2015 15:25:05 +0000 (15:25 +0000)
committerAlex Rosenberg <alexr@leftfield.org>
Mon, 26 Jan 2015 15:25:05 +0000 (15:25 +0000)
(I think the last checkin, r227060, got lost from the mailing lists because of the (R) in the comment.)

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@227090 91177308-0d34-0410-b5e6-96231b3b80d8

autoconf/config.sub
autoconf/configure.ac

index 673d62bfbf5b54270b39874f780696b4680e9984..01956e9a1e9e05232728ba5e6a8665fe8388a037 100755 (executable)
@@ -1489,6 +1489,8 @@ case $os in
                ;;
        -nacl*)
                ;;
+       -ps4)
+               ;;
        -none)
                ;;
        *)
index 7f7fcf8bb0375d9a1326ce56c1f0c21a38970b78..0cdd1474cb8b176b7537a48c3da4934c4672c768 100644 (file)
@@ -369,6 +369,8 @@ AC_CACHE_CHECK([type of operating system we're going to target],
     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])