This is a fixup to https://github.com/llvm/llvm-project/pull/93808, which used LDFLAGS instead of the correct LD_EXTRAS
10 lines
123 B
Makefile
10 lines
123 B
Makefile
C_SOURCES := main.c
|
|
|
|
DYLIB_NAME := a
|
|
DYLIB_C_SOURCES := a.c
|
|
ifndef PIE
|
|
LD_EXTRAS := -no-pie
|
|
endif
|
|
|
|
include Makefile.rules
|