72f8771094
In cross, CXX will look like aarch64-unknown-linux-gnu-g++. We could run some command to check what kind of compiler it is, but for now we can just check if g++ is anywhere in the string. I couldn’t find any "ends with" for makefile, so it can be anywhere in CXX.
43 lines
998 B
Makefile
43 lines
998 B
Makefile
PRECOMPILE_HEADERS ?= 1
|
|
|
|
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) -x c++-header -o $@ $< $(GLOBAL_CXXFLAGS) $(GCH_CXXFLAGS)
|
|
|
|
PCH = $(buildprefix)precompiled-headers.h.pch
|
|
|
|
$(PCH): precompiled-headers.h
|
|
@rm -f $@
|
|
@mkdir -p "$(dir $@)"
|
|
$(trace-gen) $(CXX) -x c++-header -o $@ $< $(GLOBAL_CXXFLAGS) $(GCH_CXXFLAGS)
|
|
|
|
clean-files += $(GCH) $(PCH)
|
|
|
|
ifeq ($(PRECOMPILE_HEADERS), 1)
|
|
|
|
ifeq ($(findstring g++,$(CXX)), g++)
|
|
|
|
GLOBAL_CXXFLAGS_PCH += -include $(buildprefix)precompiled-headers.h -Winvalid-pch
|
|
|
|
GLOBAL_ORDER_AFTER += $(GCH)
|
|
|
|
else ifeq ($(findstring clang++,$(CXX)), clang++)
|
|
|
|
GLOBAL_CXXFLAGS_PCH += -include-pch $(PCH) -Winvalid-pch
|
|
|
|
GLOBAL_ORDER_AFTER += $(PCH)
|
|
|
|
else
|
|
|
|
$(error Don't know how to precompile headers on $(CXX))
|
|
|
|
endif
|
|
|
|
endif
|