mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-09 15:58:05 +02:00
e74ce01b7f
Since 24.05 (I think) we need to pass `-c` or Clang thinks we want to compile *both* a final executable and precompiled header file, and complains that we cannot use `-o` with multiple outputs. `-c` seems fine with GCC too, so I just put it in there conditionally.
22 lines
532 B
Makefile
22 lines
532 B
Makefile
PRECOMPILE_HEADERS ?= 0
|
|
|
|
print-var-help += \
|
|
echo " PRECOMPILE_HEADERS ($(PRECOMPILE_HEADERS)): Whether to use precompiled headers to speed up the build";
|
|
|
|
GCH = $(buildprefix)precompiled-headers.h.gch
|
|
|
|
$(GCH): precompiled-headers.h
|
|
@rm -f $@
|
|
@mkdir -p "$(dir $@)"
|
|
$(trace-gen) $(CXX) -c -x c++-header -o $@ $< $(GLOBAL_CXXFLAGS) $(GCH_CXXFLAGS)
|
|
|
|
clean-files += $(GCH)
|
|
|
|
ifeq ($(PRECOMPILE_HEADERS), 1)
|
|
|
|
GLOBAL_CXXFLAGS_PCH += -include $(buildprefix)precompiled-headers.h -Winvalid-pch
|
|
|
|
GLOBAL_ORDER_AFTER += $(GCH)
|
|
|
|
endif
|