[Openmp-commits] [PATCH] D23626: [OPENMP] ppc64le recognized as big-endian

George Rokos via Openmp-commits openmp-commits at lists.llvm.org
Fri Sep 9 11:12:52 PDT 2016


This revision was automatically updated to reflect the committed changes.
Closed by commit rL281068: [OPENMP] ppc64le recognized as big-endian (authored by grokos).

Changed prior to commit:
  https://reviews.llvm.org/D23626?vs=68421&id=70871#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D23626

Files:
  openmp/trunk/runtime/CMakeLists.txt

Index: openmp/trunk/runtime/CMakeLists.txt
===================================================================
--- openmp/trunk/runtime/CMakeLists.txt
+++ openmp/trunk/runtime/CMakeLists.txt
@@ -65,6 +65,8 @@
     set(LIBOMP_ARCH x86_64)
   elseif(LIBOMP_NATIVE_ARCH STREQUAL "x86_64")
     set(LIBOMP_ARCH x86_64)
+  elseif(LIBOMP_NATIVE_ARCH MATCHES "powerpc64le")
+    set(LIBOMP_ARCH ppc64le)
   elseif(LIBOMP_NATIVE_ARCH MATCHES "powerpc")
     set(LIBOMP_ARCH ppc64)
   elseif(LIBOMP_NATIVE_ARCH MATCHES "aarch64")


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D23626.70871.patch
Type: text/x-patch
Size: 521 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/openmp-commits/attachments/20160909/13e9cecc/attachment.bin>


More information about the Openmp-commits mailing list