Skip to content

Commit 1d39d18

Browse files
committedNov 28, 2017
[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. llvm-svn: 319255
1 parent 35c7366 commit 1d39d18

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

Diff for: ‎compiler-rt/lib/xray/CMakeLists.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ set(arm_SOURCES
1919
xray_arm.cc
2020
xray_trampoline_arm.S)
2121

22-
set(armhf_SOURCES)
22+
set(armhf_SOURCES
23+
${arm_SOURCES})
2324

2425
set(aarch64_SOURCES
2526
xray_AArch64.cc

0 commit comments

Comments
 (0)
Please sign in to comment.