This is a fixup to https://github.com/llvm/llvm-project/pull/93808, which used LDFLAGS instead of the correct LD_EXTRAS
11 lines
111 B
Makefile
11 lines
111 B
Makefile
# Example:
|
|
#
|
|
# C_SOURCES := b.c
|
|
# EXE := b.out
|
|
|
|
ifndef PIE
|
|
LD_EXTRAS := -no-pie
|
|
endif
|
|
|
|
include Makefile.rules
|