This is a fixup to https://github.com/llvm/llvm-project/pull/93808, which used LDFLAGS instead of the correct LD_EXTRAS
8 lines
127 B
Makefile
8 lines
127 B
Makefile
CXX_SOURCES := main.cpp
|
|
CXXFLAGS_EXTRAS := -std=c++2a -fchar8_t
|
|
ifndef PIE
|
|
LD_EXTRAS := -no-pie
|
|
endif
|
|
|
|
include Makefile.rules
|