Compile each project's PCH to a separate file to reduce developer friction. (#3505)
Having to remove the precompiled header when switching from firmware to simulator to unit_tests and back again is annoying. Use a directory to store the precompiled header output. Turn off precompiled header warnings as GCC still complains even if it finds a valid one eventually.
This commit is contained in:
parent
8639b7c7e4
commit
7367aa5b8a
|
@ -18,6 +18,7 @@ PROJECT_DIR = .
|
||||||
# Configure precompiled header
|
# Configure precompiled header
|
||||||
PCH_DIR = $(PROJECT_DIR)/pch
|
PCH_DIR = $(PROJECT_DIR)/pch
|
||||||
PCHSRC = $(PCH_DIR)/pch.h
|
PCHSRC = $(PCH_DIR)/pch.h
|
||||||
|
PCHSUB = firmware
|
||||||
|
|
||||||
# Imported source files and paths
|
# Imported source files and paths
|
||||||
CHIBIOS_CONTRIB = ChibiOS-Contrib
|
CHIBIOS_CONTRIB = ChibiOS-Contrib
|
||||||
|
@ -61,7 +62,7 @@ endif
|
||||||
|
|
||||||
# C++ specific options here (added to USE_OPT).
|
# C++ specific options here (added to USE_OPT).
|
||||||
ifeq ($(USE_CPPOPT),)
|
ifeq ($(USE_CPPOPT),)
|
||||||
USE_CPPOPT = -std=c++17 -Wno-register -fno-rtti -fno-threadsafe-statics -fno-exceptions -fno-use-cxa-atexit -Winvalid-pch
|
USE_CPPOPT = -std=c++17 -Wno-register -fno-rtti -fno-threadsafe-statics -fno-exceptions -fno-use-cxa-atexit
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Hellen is one of the boards which cares
|
# Hellen is one of the boards which cares
|
||||||
|
|
|
@ -120,6 +120,7 @@ PROJECT_DIR = ..
|
||||||
# Configure precompiled header
|
# Configure precompiled header
|
||||||
PCH_DIR = $(PROJECT_DIR)/pch
|
PCH_DIR = $(PROJECT_DIR)/pch
|
||||||
PCHSRC = $(PCH_DIR)/pch.h
|
PCHSRC = $(PCH_DIR)/pch.h
|
||||||
|
PCHSUB = bootloader
|
||||||
|
|
||||||
# Imported source files and paths
|
# Imported source files and paths
|
||||||
CHIBIOS = $(PROJECT_DIR)/ChibiOS
|
CHIBIOS = $(PROJECT_DIR)/ChibiOS
|
||||||
|
|
|
@ -3,10 +3,11 @@
|
||||||
# Add the PCH dir to source path
|
# Add the PCH dir to source path
|
||||||
SRCPATHS += $(PCH_DIR)
|
SRCPATHS += $(PCH_DIR)
|
||||||
|
|
||||||
PCHOBJ = $(addprefix $(PCH_DIR)/, $(notdir $(PCHSRC:.h=.h.gch)))
|
PCHOBJ = $(addprefix $(PCH_DIR)/, $(notdir $(PCHSRC:.h=.h.gch)))/$(PCHSUB)
|
||||||
|
|
||||||
# Compile precompiled header file(s) as a cpp file, but output to .h.gch file
|
# Compile precompiled header file(s) as a cpp file, but output to .h.gch file
|
||||||
$(PCHOBJ) : $(PCH_DIR)/%.h.gch : %.h Makefile
|
$(PCHOBJ) : $(PCH_DIR)/%.h.gch/$(PCHSUB) : %.h Makefile
|
||||||
|
@mkdir -p $<.gch
|
||||||
ifeq ($(USE_VERBOSE_COMPILE),yes)
|
ifeq ($(USE_VERBOSE_COMPILE),yes)
|
||||||
@echo
|
@echo
|
||||||
$(CPPC) -c $(CPPFLAGS) $(AOPT) -I. $(IINCDIR) $< -o $@
|
$(CPPC) -c $(CPPFLAGS) $(AOPT) -I. $(IINCDIR) $< -o $@
|
||||||
|
|
|
@ -26,6 +26,7 @@ RULESFILE = ../firmware/rusefi_rules.mk
|
||||||
# Configure precompiled header
|
# Configure precompiled header
|
||||||
PCH_DIR = $(PROJECT_DIR)/pch
|
PCH_DIR = $(PROJECT_DIR)/pch
|
||||||
PCHSRC = $(PCH_DIR)/pch.h
|
PCHSRC = $(PCH_DIR)/pch.h
|
||||||
|
PCHSUB = simulator
|
||||||
|
|
||||||
# used by USE_SMART_BUILD
|
# used by USE_SMART_BUILD
|
||||||
CONFDIR = .
|
CONFDIR = .
|
||||||
|
@ -64,7 +65,7 @@ endif
|
||||||
|
|
||||||
# C++ specific options here (added to USE_OPT).
|
# C++ specific options here (added to USE_OPT).
|
||||||
ifeq ($(USE_CPPOPT),)
|
ifeq ($(USE_CPPOPT),)
|
||||||
USE_CPPOPT = -std=c++17 -Wno-register -fno-rtti -Winvalid-pch
|
USE_CPPOPT = -std=c++17 -Wno-register -fno-rtti
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Enable this if you want the linker to remove unused code and data.
|
# Enable this if you want the linker to remove unused code and data.
|
||||||
|
|
|
@ -510,9 +510,9 @@ TEST(util, WrapAround62) {
|
||||||
// Test random progression, positive and negative.
|
// Test random progression, positive and negative.
|
||||||
uint32_t seed = time(NULL);
|
uint32_t seed = time(NULL);
|
||||||
printf("Testing with seed 0x%08x\n", seed);
|
printf("Testing with seed 0x%08x\n", seed);
|
||||||
srandom(seed);
|
srand(seed);
|
||||||
for (unsigned i = 0; i < 10000; i++) {
|
for (unsigned i = 0; i < 10000; i++) {
|
||||||
int32_t delta = random();
|
int32_t delta = rand();
|
||||||
if (delta < 0) {
|
if (delta < 0) {
|
||||||
delta = ~delta;
|
delta = ~delta;
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,6 +10,7 @@ INCDIR += $(UNIT_TESTS_DIR)/googletest/googlemock/include \
|
||||||
|
|
||||||
PCH_DIR = ../firmware/pch
|
PCH_DIR = ../firmware/pch
|
||||||
PCHSRC = $(PCH_DIR)/pch.h
|
PCHSRC = $(PCH_DIR)/pch.h
|
||||||
|
PCHSUB = unit_tests
|
||||||
|
|
||||||
include $(PROJECT_DIR)/rusefi_rules.mk
|
include $(PROJECT_DIR)/rusefi_rules.mk
|
||||||
|
|
||||||
|
@ -55,7 +56,7 @@ endif
|
||||||
|
|
||||||
# C++ specific options here (added to USE_OPT).
|
# C++ specific options here (added to USE_OPT).
|
||||||
ifeq ($(USE_CPPOPT),)
|
ifeq ($(USE_CPPOPT),)
|
||||||
USE_CPPOPT = -std=gnu++17 -fno-rtti -fpermissive -fno-use-cxa-atexit -Winvalid-pch
|
USE_CPPOPT = -std=gnu++17 -fno-rtti -fpermissive -fno-use-cxa-atexit
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Enable this if you want the linker to remove unused code and data
|
# Enable this if you want the linker to remove unused code and data
|
||||||
|
|
Loading…
Reference in New Issue