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.)

llvm-svn: 227090

llvm/autoconf/config.sub
llvm/autoconf/configure.ac

index 673d62b..01956e9 100755 (executable)
@@ -1489,6 +1489,8 @@ case $os in
                ;;
        -nacl*)
                ;;
+       -ps4)
+               ;;
        -none)
                ;;
        *)
index 7f7fcf8..0cdd147 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])