rusefi/simulator/Makefile

302 lines
8.3 KiB
Makefile
Raw Normal View History

2015-07-10 06:01:56 -07:00
##############################################################################
# Build global options
# NOTE: Can be overridden externally.
#
#
# As of Sep 2019, this is known to compile on Linux
# in my case I had to
# sudo apt-get install gcc-multilib g++-multilib
#
# todo: automatically execute that command same as we automatically fetch submodules?
#
2018-12-22 22:54:14 -08:00
2019-03-20 05:45:15 -07:00
CHIBIOS = ../firmware/ChibiOS
2021-07-05 08:36:23 -07:00
CHIBIOS_CONTRIB= ../firmware/ChibiOS-Contrib
2018-12-22 22:54:14 -08:00
RULESPATH = $(CHIBIOS)/os/common/startup/SIMIA32/compilers/GCC
RULESFILE = $(RULESPATH)/rules.mk
PROJECT_CPU=simulator
2018-12-22 22:54:14 -08:00
include ../firmware/rusefi.mk
2019-12-02 07:26:16 -08:00
RULESFILE = ../firmware/rusefi_rules.mk
# Configure precompiled header
PCH_DIR = $(PROJECT_DIR)/pch
PCHSRC = $(PCH_DIR)/pch.h
2020-09-07 09:09:39 -07:00
# used by USE_SMART_BUILD
CONFDIR = .
2018-12-13 18:32:50 -08:00
2015-07-10 06:01:56 -07:00
# Compiler options here.
ifeq ($(USE_OPT),)
2017-03-29 15:29:36 -07:00
# this config if debugging is needed, but the binary is about 50M
# USE_OPT = -Wall -ggdb -Werror-implicit-function-declaration -Werror -Wno-error=pointer-sign -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=sign-compare -Wno-error=unused-parameter -Wno-error=missing-field-initializers -Wno-error=write-strings -Wno-error=strict-aliasing
2021-10-17 15:40:05 -07:00
# USE_OPT = -Wall -O0 -ggdb -g -Wno-error=implicit-fallthrough -Werror-implicit-function-declaration -Wno-error=pointer-sign -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=sign-compare -Wno-error=unused-parameter -Wno-error=missing-field-initializers -Wno-error=write-strings
2017-03-29 15:29:36 -07:00
# this config producec a smaller binary file
2018-11-16 05:42:13 -08:00
# 7.3 compiler would want -Wno-error=implicit-fallthrough while 6.4 does not know about it
# see https://github.com/rusefi/rusefi/issues/517
2021-06-06 23:17:56 -07:00
USE_OPT = -Wall -O2 -Wno-error=implicit-fallthrough -Wno-error=write-strings -Wno-error=strict-aliasing
2017-03-29 15:29:36 -07:00
ifeq ($(OS),Windows_NT)
else
USE_OPT += -m32
endif
2015-07-10 06:01:56 -07:00
endif
# See explanation in main firmware Makefile for these three defines
USE_OPT += $(RUSEFI_OPT) -DEFI_UNIT_TEST=0 -DEFI_PROD_CODE=0 -DEFI_SIMULATOR=1
2019-12-02 07:26:16 -08:00
2019-04-20 18:57:00 -07:00
ifeq ($(CCACHE_DIR),)
$(info No CCACHE_DIR)
else
$(info CCACHE_DIR is ${CCACHE_DIR})
CCPREFIX=ccache
endif
2015-07-10 06:01:56 -07:00
# C specific options here (added to USE_OPT).
ifeq ($(USE_COPT),)
2018-01-30 20:22:07 -08:00
USE_COPT = -std=gnu99
2015-07-10 06:01:56 -07:00
endif
# C++ specific options here (added to USE_OPT).
ifeq ($(USE_CPPOPT),)
USE_CPPOPT = -std=c++17 -Wno-register -fno-rtti -Winvalid-pch
2017-03-23 17:59:14 -07:00
endif
2016-05-30 16:02:00 -07:00
# Enable this if you want the linker to remove unused code and data.
2015-07-10 06:01:56 -07:00
ifeq ($(USE_LINK_GC),)
USE_LINK_GC = yes
endif
# Linker extra options here.
ifeq ($(USE_LDOPT),)
USE_LDOPT =
endif
# Enable this if you want link time optimizations (LTO)
ifeq ($(USE_LTO),)
USE_LTO = no
endif
2015-07-10 06:01:56 -07:00
# Enable this if you want to see the full log while compiling.
ifeq ($(USE_VERBOSE_COMPILE),)
USE_VERBOSE_COMPILE = no
endif
# If enabled, this option makes the build process faster by not compiling
# modules not used in the current configuration.
ifeq ($(USE_SMART_BUILD),)
2021-02-24 18:55:51 -08:00
USE_SMART_BUILD = no
2015-07-10 06:01:56 -07:00
endif
#
# Build global options
##############################################################################
##############################################################################
# Architecture or project specific options
#
#
# Architecture or project specific options
##############################################################################
##############################################################################
# Project, sources and paths
#
2017-03-23 17:59:14 -07:00
# Define project name here
Use github actions to build and upload bundles (#1583) * add env var to skip upload * remove checking from compile.bat * working on push.yaml * finish sorting * progress * rename push to builds * rename push to builds * Add skip upload env var * fix pull_request name * fixed typo and changed name * fixed indentation and runs-on * try different env var setup * add nucleos and switch to underscore * add quotes * remove boards that were commented * remove boards that were commented * fix project board name * fixed variable name * add ini-file and console-settings * try installing gcc-multilib first * Install g++-multilib as well * remove unnecessary export * fixed exit numbers * change to different env setup * add simulator and console compilation to board bundles * changed OS and added linux simulator build * add checkout and missing colon * add gcc-multilib installes * Install mingw * fixed install * remove mingw from linux sim and call compile directly * change directory * moved envs to command * debug ls * debug ls * set ftp vars * add makefile debug info * removed batchecks * redirect stdout to easier see orrs * change name * remove redirect, add file inpection * Add conditional project name * Try software upgrade * missing char * update ine files * try quotes * add escapes * add quotes * add escapes and quotes * remove quotes and escapes * remove software upgrade * ignore test 2 * update apt * like this then * forgot import * fix case * remove RUSEFI_SKIP_UPLOAD and check RUSEFI_FTP_SERVER instead * break workflow back apart * upload simulator artifact * fixed operator * update apt * change paths * Update build-firmware.yaml * move update bundle to artifacts * fix var name * Install ncftp * set env vars conditionally * remove check so zips are created * try things the github way and copy to primary * re-enable test * missing space
2020-07-08 08:10:24 -07:00
ifeq ($(OS),Windows_NT)
PROJECT = rusefi_simulator.exe
else
PROJECT = rusefi_simulator
endif
2017-03-23 17:59:14 -07:00
PROJECT_DIR = ../firmware
2015-07-10 06:01:56 -07:00
# Imported source files and paths
# Licensing files.
include $(CHIBIOS)/os/license/license.mk
# Startup files.
# HAL-OSAL files (optional).
2017-03-23 17:59:14 -07:00
include $(CHIBIOS)/os/hal/hal.mk
include $(CHIBIOS)/os/hal/boards/simulator/board.mk
include $(CHIBIOS)/os/hal/osal/rt-nil/osal.mk
# RTOS files (optional).
2017-03-23 17:59:14 -07:00
include $(CHIBIOS)/os/rt/rt.mk
include $(CHIBIOS)/os/common/ports/SIMIA32/compilers/GCC/port.mk
# Other files (optional).
include $(CHIBIOS)/os/hal/lib/streams/streams.mk
#include $(CHIBIOS)/os/various/cpp_wrappers/chcpp.mk
2017-03-23 17:59:14 -07:00
ifeq ($(OS),Windows_NT)
include ${CHIBIOS}/os/hal/ports/simulator/win32/platform.mk
else
2017-03-31 01:36:51 -07:00
include ${CHIBIOS}/os/hal/ports/simulator/posix/platform.mk
2017-03-23 17:59:14 -07:00
endif
include $(PROJECT_DIR)/console/binary/tunerstudio.mk
include $(PROJECT_DIR)/console/console.mk
2015-07-10 06:01:56 -07:00
include $(PROJECT_DIR)/config/engines/engines.mk
2018-10-30 05:42:36 -07:00
include $(PROJECT_DIR)/controllers/controllers.mk
include $(PROJECT_DIR)/controllers/lua/lua.mk
2015-07-10 06:01:56 -07:00
include $(PROJECT_DIR)/development/development.mk
2017-04-21 10:35:06 -07:00
include $(PROJECT_DIR)/hw_layer/hw_layer.mk
include $(PROJECT_DIR)/hw_layer/drivers/drivers.mk
include $(PROJECT_DIR)/hw_layer/sensors/sensors.mk
include $(PROJECT_DIR)/init/init.mk
include $(PROJECT_DIR)/util/util.mk
2015-07-10 06:01:56 -07:00
# C sources that can be compiled in ARM or THUMB mode depending on the global
# setting.
CSRC = $(ALLCSRC) \
2017-03-23 17:59:14 -07:00
$(SYSTEMSRC) \
$(CONSOLESRC) \
$(CONTROLLERS_ALGO_SRC) \
$(CONTROLLERS_CORE_SRC) \
$(CONTROLLERS_SENSORS_SRC) \
$(ENGINES_SRC) \
$(UTILSRC) \
main.c
2015-07-10 06:01:56 -07:00
# C++ sources that can be compiled in ARM or THUMB mode depending on the global
# setting.
CPPSRC = $(ALLCPPSRC) \
$(CHIBIOS)/os/various/cpp_wrappers/ch.cpp \
$(UTILSRC_CPP) \
2015-07-10 06:01:56 -07:00
$(CONTROLLERS_ALGO_SRC_CPP) \
2018-10-30 05:42:36 -07:00
$(CONTROLLERS_SRC_CPP) \
2015-07-10 06:01:56 -07:00
$(PROJECT_DIR)/development/sensor_chart.cpp \
2019-01-03 21:16:08 -08:00
$(HW_LAYER_EMS_CPP) \
$(HW_SENSORS_CPP) \
$(HW_LAYER_DRIVERS_CPP) \
$(HW_LAYER_DRIVERS_CORE_CPP) \
2015-07-10 06:01:56 -07:00
$(TRIGGER_SRC_CPP) \
$(TRIGGER_DECODERS_SRC_CPP) \
$(SYSTEMSRC_CPP) \
$(TUNERSTUDIO_SRC_CPP) \
$(CONSOLE_SRC_CPP) \
2019-09-21 12:33:13 -07:00
$(INIT_SRC_CPP) \
2015-07-10 06:01:56 -07:00
$(CONTROLLERS_SENSORS_SRC_CPP) \
$(CONTROLLERS_CORE_SRC_CPP) \
$(CONTROLLERS_MATH_SRC_CPP) \
$(DEV_SIMULATOR_SRC_CPP) \
$(ENGINES_SRC_CPP) \
2017-03-23 17:59:14 -07:00
simulator/rusEfiFunctionalTest.cpp \
simulator/framework.cpp \
simulator/boards.cpp \
2015-07-10 06:01:56 -07:00
$(TEST_SRC_CPP)
2017-03-23 17:59:14 -07:00
2015-07-10 06:01:56 -07:00
# List ASM source files here
ASMSRC = $(PORTASM)
INCDIR = . \
$(PCH_DIR) \
$(ALLINC) \
$(CHIBIOS)/os/various/cpp_wrappers \
$(UTIL_INC) \
2019-09-21 12:33:13 -07:00
$(PROJECT_DIR)/init \
2020-05-25 10:42:55 -07:00
$(CONSOLE_INC) \
2017-03-23 17:59:14 -07:00
$(PROJECT_DIR)/config/engines \
$(PROJECT_DIR)/config/boards/ \
2017-03-23 17:59:14 -07:00
$(PROJECT_DIR)/ext_algo \
$(HW_LAYER_DRIVERS_INC) \
$(HW_LAYER_INC) \
$(HW_SENSORS_INC) \
2017-03-23 17:59:14 -07:00
$(PROJECT_DIR)/hw_layer/algo \
$(PROJECT_DIR)/hw_layer/drivers/can \
$(HW_SENSORS_INC) \
$(DEVELOPMENT_DIR) \
$(CONTROLLERS_INC) \
2017-03-23 17:59:14 -07:00
${CHIBIOS}/os/various \
$(CHIBIOS)/os/hal/lib/streams \
simulator
2015-07-10 06:01:56 -07:00
# List ASM source files here
ASMSRC =
ASMXSRC = $(STARTUPASM) $(PORTASM) $(OSALASM)
2015-07-10 06:01:56 -07:00
#
# Project, sources and paths
##############################################################################
##############################################################################
# Compiler settings
#
Use github actions to build and upload bundles (#1583) * add env var to skip upload * remove checking from compile.bat * working on push.yaml * finish sorting * progress * rename push to builds * rename push to builds * Add skip upload env var * fix pull_request name * fixed typo and changed name * fixed indentation and runs-on * try different env var setup * add nucleos and switch to underscore * add quotes * remove boards that were commented * remove boards that were commented * fix project board name * fixed variable name * add ini-file and console-settings * try installing gcc-multilib first * Install g++-multilib as well * remove unnecessary export * fixed exit numbers * change to different env setup * add simulator and console compilation to board bundles * changed OS and added linux simulator build * add checkout and missing colon * add gcc-multilib installes * Install mingw * fixed install * remove mingw from linux sim and call compile directly * change directory * moved envs to command * debug ls * debug ls * set ftp vars * add makefile debug info * removed batchecks * redirect stdout to easier see orrs * change name * remove redirect, add file inpection * Add conditional project name * Try software upgrade * missing char * update ine files * try quotes * add escapes * add quotes * add escapes and quotes * remove quotes and escapes * remove software upgrade * ignore test 2 * update apt * like this then * forgot import * fix case * remove RUSEFI_SKIP_UPLOAD and check RUSEFI_FTP_SERVER instead * break workflow back apart * upload simulator artifact * fixed operator * update apt * change paths * Update build-firmware.yaml * move update bundle to artifacts * fix var name * Install ncftp * set env vars conditionally * remove check so zips are created * try things the github way and copy to primary * re-enable test * missing space
2020-07-08 08:10:24 -07:00
$(info OS is [${OS}])
2015-07-10 06:01:56 -07:00
ifeq ($(OS),Windows_NT)
2019-08-26 18:56:10 -07:00
# ChibiOS seem to require 32 bit compiler at least on Windows
2017-03-31 18:44:56 -07:00
# base 32-bit Cygwin is needed with mingw64 32-bit version
2017-03-31 10:28:52 -07:00
# Cygwin64 would not debug if used with mingw64 32-bit version
2019-02-11 21:18:15 -08:00
# 32 bit GDB available at http://www.equation.com/servlet/equation.cmd?fa=gdb
2016-07-04 20:03:06 -07:00
TRGT = i686-w64-mingw32-
2015-07-10 06:01:56 -07:00
else
TRGT =
endif
2019-04-20 18:57:00 -07:00
CC = $(CCPREFIX) $(TRGT)gcc
CPPC = $(CCPREFIX) $(TRGT)g++
2015-07-10 06:01:56 -07:00
# Enable loading with g++ only if you need C++ runtime support.
# NOTE: You can use C++ even without C++ support if you are careful. C++
# runtime support makes code size explode.
2017-03-29 20:59:59 -07:00
#LD = $(TRGT)gcc
LD = $(TRGT)g++
2015-07-10 06:01:56 -07:00
CP = $(TRGT)objcopy
AS = $(TRGT)gcc -x assembler-with-cpp
AR = $(TRGT)ar
2015-07-10 06:01:56 -07:00
OD = $(TRGT)objdump
SZ = $(TRGT)size
2015-07-10 06:01:56 -07:00
BIN = $(CP) -O binary
COV = gcov
2015-07-10 06:01:56 -07:00
# Define C warning options here
CWARN = -Wall -Wextra -Wundef -Wstrict-prototypes
2015-07-10 06:01:56 -07:00
# Define C++ warning options here
CPPWARN = -Wall -Wextra -Wundef
2015-07-10 06:01:56 -07:00
#
# Compiler settings
##############################################################################
##############################################################################
# Start of user section
#
# List all user C define here, like -D_DEBUG=1
2017-03-23 17:59:14 -07:00
UDEFS = -DSIMULATOR
2015-07-10 06:01:56 -07:00
# Define ASM defines here
UADEFS =
# List all user directories here
UINCDIR =
# List the user directory to look for the libraries here
ULIBDIR =
# List all user libraries here
2017-03-31 01:36:51 -07:00
ifeq ($(OS),Windows_NT)
2017-03-31 06:32:47 -07:00
ULIBS = -lws2_32 -static
2017-03-31 01:36:51 -07:00
else
ULIBS =
endif
2015-07-10 06:01:56 -07:00
#
# End of user defines
##############################################################################
include $(RULESPATH)/rules.mk
# Enable precompiled header
include $(PROJECT_DIR)/rusefi_pch.mk