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.
9 lines
117 B
Makefile
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
|