Files
clang-p2996/lldb/test/API/functionalities/json/symbol-file/Makefile
Vladislav Dzhidzhoev 058ede06c4 [lldb][test] Use xcrun -f strip for API tests on Darwin (#111842)
A follow-up for https://github.com/llvm/llvm-project/pull/111816.

This is to fix buildbot failure
https://lab.llvm.org/staging/#/builders/195/builds/4242.

TestSymbolFileJSON.py doesn't pass with llvm-strip on macOS. Apparently,
llvm-strip/llvm-objcopy can't clean symbols from Mach-O nlists.
2024-10-10 17:14:13 +02:00

9 lines
117 B
Makefile

C_SOURCES := main.c
all: stripped.out
stripped.out : a.out
$(STRIP) a.out -o stripped.out
include Makefile.rules