Files
Alex Langford 0065d2e62b [lldb][test] Fix Makefile for TestValueObjectErrors.py (#194071)
This test does not respect custom triples. hidden.c is intended to be
built with no debug info, so pass `-g0` after CFLAGS.
2026-04-27 10:17:19 -07:00

11 lines
136 B
Makefile

C_SOURCES := main.c
LD_EXTRAS = hidden.o
include Makefile.rules
a.out: hidden.o
hidden.o: hidden.c
$(CC) $(CFLAGS) -g0 -c -o $@ $<