[compiler-rt] r319255 - [XRay][compiler-rt] Fix armhf build

Dean Michael Berris via llvm-commits llvm-commits at lists.llvm.org
Tue Nov 28 15:38:18 PST 2017


Author: dberris
Date: Tue Nov 28 15:38:18 2017
New Revision: 319255

URL: http://llvm.org/viewvc/llvm-project?rev=319255&view=rev
Log:
[XRay][compiler-rt] Fix armhf build

rL319241 was a bit too aggressive removing sources dependencies. This
restores the actual required dependency for armhf.

Follow-up to D39114.

Modified:
    compiler-rt/trunk/lib/xray/CMakeLists.txt

Modified: compiler-rt/trunk/lib/xray/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/xray/CMakeLists.txt?rev=319255&r1=319254&r2=319255&view=diff
==============================================================================
--- compiler-rt/trunk/lib/xray/CMakeLists.txt (original)
+++ compiler-rt/trunk/lib/xray/CMakeLists.txt Tue Nov 28 15:38:18 2017
@@ -19,7 +19,8 @@ set(arm_SOURCES
     xray_arm.cc
     xray_trampoline_arm.S)
 
-set(armhf_SOURCES)
+set(armhf_SOURCES
+    ${arm_SOURCES})
 
 set(aarch64_SOURCES
   xray_AArch64.cc




More information about the llvm-commits mailing list