From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id DED723858CDA; Sat, 22 Jul 2023 08:28:00 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org DED723858CDA DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1690014480; bh=R27KchWRSQAg/0PFCagDd6guLDxeWqb/i9UJ+tqUyrs=; h=From:To:Subject:Date:In-Reply-To:References:From; b=kKaxxH5ruhUIeRO5zNQqcXV8DAEvQyxJ8V7IdcZMcfrkYz8MlDAq9kNJI0oIbsK5U x7mqWqZfkMn451z7pn6mMI5N4c/VUD16O1Q1Lk5bXpkTyBsQSBU/3xGxzw0m+JPWp3 pg+nl+5dpEWHI2ReNN0s9Dw6T2uND1TXOgHv+Zso= From: "alexei_sylver1 at mail dot ru" To: gcc-bugs@gcc.gnu.org Subject: =?UTF-8?B?W0J1ZyBib290c3RyYXAvMTEwNjg0XSB1bmtub3duIHNwZWMgZnVu?= =?UTF-8?B?Y3Rpb24g4oCYZHVtcHPigJkgZXJyb3IsIEMgY29tcGlsZXIgY2Fubm90IGNy?= =?UTF-8?B?ZWF0ZSBleGVjdXRhYmxlcw==?= Date: Sat, 22 Jul 2023 08:27:57 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 12.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: alexei_sylver1 at mail dot ru X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D110684 --- Comment #15 from AlexK --- I have attached all patches I have made to several Makefile.in in different folders (I created them with `diff` tool) after that I made building directory: installdir=3D/tools/gcc-12.2.0 install -v -d mybuild cd mybuild ../configure --prefix=3D"$installdir" --without-build-config LD=3Dld --enable-libssp --enable-bootstrap --enable-lto --with-isl=3D/usr/local --with-mpc=3D/usr/local --with-mpfr=3D/usr/local --with-gmp=3D/usr/local --with-system-zlib --enable-threads=3Dposix --enable-__cxa_atexit --enable-clocale=3Dgnu --enable-gcov --enable-languages=3Dc,c++,fortran,objc,obj-c++,jit,go --enable-host-shared --disable-multilib --enable-shared a few changes to Makefile: sed -i 's/^\(@endif bfd\)$/#\1/' Makefile sed -i 's/^\(@endif opcodes\)$/#\1/' Makefile # !!! https://stackru.com/questions/63879492/bez-sbrosa-kompilyatsiya-gcc-na-cros= tini-zavershaetsya-s-oshibkoj-s-neizvestnoj unset LIBRARY_PATH CPATH C_INCLUDE_PATH PKG_CONFIG_PATH CPLUS_INCLUDE_PATH INCLUDE LD_LIBRARY_PATH make .... stage1 was successfully finished=