Files
clang-p2996/lldb/test/API/lang/cpp/char8_t/Makefile
Felipe de Azevedo Piovezan c5790206f7 [lldb] Fix linker flags in lldb tests
This is a fixup to https://github.com/llvm/llvm-project/pull/93808,
which used LDFLAGS instead of the correct LD_EXTRAS
2024-06-12 09:32:54 -07:00

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