18 lines
428 B
Plaintext
18 lines
428 B
Plaintext
# Debian 12
|
|
|
|
# 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-12.2.0-deb12
|
|
GNU_TARGET = x86_64-deb12-linux-gnu
|
|
SYSROOT = $(GNU_DIR)/$(GNU_TARGET)/sys-root
|
|
CMPLR_PREFIX = $(GNU_TARGET)-
|
|
ARCH_DEP_LDFLAGS+=-Wl,-rpath-link,$(SYSROOT)/lib/x86_64-linux-gnu
|
|
endif
|