[PATCH] D57118: [CMake][PowerPC] Recognize LLVM_NATIVE_TARGET="ppc64le" as PowerPC

Phabricator via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 25 14:26:04 PDT 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rL359242: [CMake][PowerPC] Recognize LLVM_NATIVE_TARGET="ppc64le" as PowerPC (authored by kfischer, committed by ).

Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D57118/new/

https://reviews.llvm.org/D57118

Files:
  llvm/trunk/cmake/config-ix.cmake


Index: llvm/trunk/cmake/config-ix.cmake
===================================================================
--- llvm/trunk/cmake/config-ix.cmake
+++ llvm/trunk/cmake/config-ix.cmake
@@ -393,6 +393,8 @@
   set(LLVM_NATIVE_ARCH Sparc)
 elseif (LLVM_NATIVE_ARCH MATCHES "powerpc")
   set(LLVM_NATIVE_ARCH PowerPC)
+elseif (LLVM_NATIVE_ARCH MATCHES "ppc64le")
+  set(LLVM_NATIVE_ARCH PowerPC)
 elseif (LLVM_NATIVE_ARCH MATCHES "aarch64")
   set(LLVM_NATIVE_ARCH AArch64)
 elseif (LLVM_NATIVE_ARCH MATCHES "arm64")


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D57118.196728.patch
Type: text/x-patch
Size: 510 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190425/e2ea8464/attachment.bin>


More information about the llvm-commits mailing list