Skip to content

Commit 95bdbc8

Browse files
committed
[JITLink] Add -phony-externals to silence test errors on some buildbots.
The recently added MachO_subtractor_single_block tests reference C++ itanium ABI symbols, but these break on some Windows systems (see e.g. https://lab.llvm.org/buildbot/#/builders/117/builds/17021). Adding -phony-externals should suppress the errors.
1 parent 5cfc7b3 commit 95bdbc8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

llvm/test/ExecutionEngine/JITLink/AArch64/MachO_subtractor_single_block.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# RUN: yaml2obj %s -o %t
2-
# RUN: llvm-jitlink -noexec %t
2+
# RUN: llvm-jitlink -noexec -phony-externals %t
33
#
44
# Check that MachO::ARM64_RELOC_SUBTRACTOR relocations work when the fixup
55
# location and target are in the same block (in this case in the __eh_frame

llvm/test/ExecutionEngine/JITLink/x86-64/MachO_subtractor_single_block.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# RUN: yaml2obj %s -o %t
2-
# RUN: llvm-jitlink -noexec %t
2+
# RUN: llvm-jitlink -noexec -phony-externals %t
33
#
44
# Check that MachO::X86_64_RELOC_SUBTRACTOR relocations work when the fixup
55
# location and target are in the same block (in this case in the __eh_frame

0 commit comments

Comments
 (0)