From 8a9eb7d4bcfdcce2af248efbf096e4b8e7cef6b4 Mon Sep 17 00:00:00 2001 From: Thomas Walker Lynch Date: Tue, 6 May 2025 07:43:47 -0700 Subject: [PATCH] baseline set, gcc-12.1.0 compiled --- "script_gcc_min-12\360\237\226\211/build_gcc.sh" | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git "a/script_gcc_min-12\360\237\226\211/build_gcc.sh" "b/script_gcc_min-12\360\237\226\211/build_gcc.sh" index d13832a..db7a9c4 100755 --- "a/script_gcc_min-12\360\237\226\211/build_gcc.sh" +++ "b/script_gcc_min-12\360\237\226\211/build_gcc.sh" @@ -10,17 +10,19 @@ echo "🔧 Starting GCC build..." mkdir -p "$GCC_BUILD" pushd "$GCC_BUILD" -"$GCC_SRC/configure" \ +echo "gcc: $(command -v gcc)" +echo "toolchain: $TOOLCHAIN" +"$GCC_SRC/configure" \ --with-pkgversion="RT_gcc standalone by Reasoning Technology" \ --with-bugurl="https://github.com/Thomas-Walker-Lynch/RT_gcc/issues" \ --with-documentation-root-url="https://gcc.gnu.org/onlinedocs/" \ --with-changes-root-url="https://github.com/Thomas-Walker-Lynch/RT_gcc/releases/" \ - --host="$HOST" \ --prefix="$TOOLCHAIN" \ --enable-languages=c,c++ \ --enable-threads=posix \ + --disable-multilib $MAKE -j"$MAKE_JOBS" $MAKE install -- 2.20.1