Files
clang-p2996/lldb/test/API/macosx/rosetta/Makefile
Alex Langford a43a4a5329 [lldb] Build the TestRosetta.py executable with system stdlib (#78370)
This is a speculative fix for TestRosetta.py which is currently failing
on Green Dragon.

TestRosetta just makes sure we can debug an x86_64 process on Apple
Silicon. However, we're failing to build the x86_64 test binary. The
linker is failing with some warnings about libc++ and libunwind being
build for arm64 while the target binary is x86_64. I'm going to try
building with the system standard libraries instead of the just-built
ones to workaround it.
2024-01-16 16:29:31 -08:00

7 lines
91 B
Makefile

C_SOURCES := main.c
override ARCH = x86_64
USE_SYSTEM_STDLIB := 1
include Makefile.rules