They are for make targets, i.e. file dependent flags not for target architecture dependent flags.
21 lines
553 B
Plaintext
21 lines
553 B
Plaintext
# Include definitions common to linux pentium targets
|
|
include $(CONFIG)/os/CONFIG.Common.linux-x86_64
|
|
|
|
BUILD_CLASS = HOST
|
|
|
|
TOOLSET_LOCATION = /opt/rh
|
|
TOOLSET = gcc-toolset-12
|
|
STD_CXXFLAGS = -std=c++20
|
|
|
|
# Fix bug in gcc-toolset-11 calling the old assembler
|
|
ifneq ($(filter %-11,$(TOOLSET)),)
|
|
CPPFLAGS += $(TOOLSET_DIR:%=-B$(SYSROOT)%/bin)
|
|
LDFLAGS += $(TOOLSET_DIR:%=-B$(SYSROOT)%/bin)
|
|
endif
|
|
|
|
ifneq (($(TOOLSET)),)
|
|
# Perl requests (native) annobin incompatible with the annobin from any TOOLSET
|
|
# Disable Perl specific CFLAGS
|
|
override Cap5_CFLAGS=
|
|
endif
|