The test did not build hidden.o with a custom target triple when specified. Use CFLAGS from Makefile.rules to fix.
12 lines
157 B
Makefile
12 lines
157 B
Makefile
C_SOURCES := main.c
|
|
CFLAGS_EXTRAS := -gdwarf-5
|
|
|
|
include Makefile.rules
|
|
|
|
OBJECTS += inline.o
|
|
|
|
$(EXE): main.c inline.o
|
|
|
|
%.o: %.ll
|
|
$(CC) $(CFLAGS) $< -c -o $@
|