From mboxrd@z Thu Jan 1 00:00:00 1970 From: Arne Fitzenreiter To: development@lists.ipfire.org Subject: [PATCH 2/4] gcc: fix build on riscv64 Date: Wed, 09 Aug 2023 19:58:04 +0200 Message-ID: <20230809175806.2624-2-arne_f@ipfire.org> In-Reply-To: <20230809175806.2624-1-arne_f@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============4412048290120210492==" List-Id: --===============4412048290120210492== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Signed-off-by: Arne Fitzenreiter --- lfs/gcc | 2 ++ ..._use_log2_from_cheader_without_namespace.patch | 15 +++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 src/patches/gcc/gcc-13.1.0-riscv_use_log2_from_cheader_wi= thout_namespace.patch diff --git a/lfs/gcc b/lfs/gcc index 2468e6c85..0e01fe660 100644 --- a/lfs/gcc +++ b/lfs/gcc @@ -212,6 +212,8 @@ $(subst %,%_BLAKE2,$(objects)) : $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) @rm -rf $(DIR_APP) $(DIR_SRC)/gcc-build && cd $(DIR_SRC) && tar axf $(DIR_D= L)/$(DL_FILE) + cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/gcc/gcc-13.1.0-riscv_u= se_log2_from_cheader_without_namespace.patch + @mkdir $(DIR_SRC)/gcc-build =20 cd $(DIR_APP) && sed -i 's/install_to_$$(INSTALL_DEST) //' libiberty/Makefi= le.in diff --git a/src/patches/gcc/gcc-13.1.0-riscv_use_log2_from_cheader_without_n= amespace.patch b/src/patches/gcc/gcc-13.1.0-riscv_use_log2_from_cheader_witho= ut_namespace.patch new file mode 100644 index 000000000..346817952 --- /dev/null +++ b/src/patches/gcc/gcc-13.1.0-riscv_use_log2_from_cheader_without_namespac= e.patch @@ -0,0 +1,15 @@ +diff -Naur gcc-13.1.0.org/gcc/config/riscv/genrvv-type-indexer.cc gcc-13.1.0= /gcc/config/riscv/genrvv-type-indexer.cc +--- gcc-13.1.0.org/gcc/config/riscv/genrvv-type-indexer.cc 2023-04-26 09:09:= 39.000000000 +0200 ++++ gcc-13.1.0/gcc/config/riscv/genrvv-type-indexer.cc 2023-08-02 11:28:53.6= 15913583 +0200 +@@ -115,9 +115,9 @@ + if (sew =3D=3D eew) + elmul_log2 =3D lmul_log2; + else if (sew > eew) +- elmul_log2 =3D lmul_log2 - std::log2 (sew / eew); ++ elmul_log2 =3D lmul_log2 - log2 (sew / eew); + else /* sew < eew */ +- elmul_log2 =3D lmul_log2 + std::log2 (eew / sew); ++ elmul_log2 =3D lmul_log2 + log2 (eew / sew); +=20 + if (float_p) + return floattype (eew, elmul_log2); --=20 2.39.2 --===============4412048290120210492==--