17 lines
361 B
Plaintext
17 lines
361 B
Plaintext
# Debian 10
|
|
|
|
# Include definitions common to all Linux targets
|
|
include $(CONFIG)/os/CONFIG.Common.linux-x86_64
|
|
|
|
BUILD_CLASS = HOST
|
|
|
|
STD_CXXFLAGS = -std=c++17
|
|
|
|
ifneq ($(EPICS_HOST_ARCH),$(T_A))
|
|
# Cross compile
|
|
GNU_DIR = /opt/xgcc/gcc-8.3.0-deb10
|
|
GNU_TARGET = x86_64-deb10-linux-gnu
|
|
SYSROOT = $(GNU_DIR)/$(GNU_TARGET)/sys-root
|
|
CMPLR_PREFIX = $(GNU_TARGET)-
|
|
endif
|