From de838385f49113672d8e69fcb99af7e1b80c176e Mon Sep 17 00:00:00 2001 From: Zoltan HERPAI Date: Sun, 30 Jan 2022 13:47:12 +0100 Subject: [PATCH] gcc: add multilib m4/m4-nofpu config for sh4 Signed-off-by: Zoltan HERPAI --- toolchain/gcc/common.mk | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/toolchain/gcc/common.mk b/toolchain/gcc/common.mk index bef4fa37f8..f857ef8769 100644 --- a/toolchain/gcc/common.mk +++ b/toolchain/gcc/common.mk @@ -80,6 +80,10 @@ else GRAPHITE_CONFIGURE:= --without-isl --without-cloog endif +ifneq ($(CONFIG_sh4),y) + DISABLE_MULTILIB:=--disable-multilib +endif + GCC_CONFIGURE:= \ SHELL="$(BASH)" \ $(if $(shell gcc --version 2>&1 | grep -E "Apple.(LLVM|clang)"), \ @@ -143,6 +147,11 @@ ifdef CONFIG_sparc --with-long-double-128 endif +ifdef CONFIG_sh4 + GCC_CONFIGURE+= \ + --with-multilib-list=m4,m4-nofpu +endif + ifneq ($(GCC_ARCH),) GCC_CONFIGURE+= --with-arch=$(GCC_ARCH) endif -- 2.30.2