From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 455D83858D35; Mon, 1 Jan 2024 09:28:11 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 455D83858D35 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1704101291; bh=9i4nXuTPB14OdVvK7zFuxvpqXeKBoM4YINj4pSUDt6I=; h=From:To:Subject:Date:From; b=QDNf5YMDIgmsiqutzQrlKnTLqt6DkpD/qn/ODPmgm3EHjE2poVU4qRmjcXVlXB8va AxnfxPDOVED17A835o2PcUOGPs7gOaNdO1PhhRlfwb93vHgbWs+jscnf0n1moXOVbH wCgfGNzNB23otOQ9+AXQXd7Xa1XDv1WMtnYoizNQ= From: "eyalroz1 at gmx dot com" To: gcc-bugs@gcc.gnu.org Subject: =?UTF-8?B?W0J1ZyBvdGhlci8xMTMxODhdIE5ldzogZ3JhcGhpdGUtaXNsLWFz?= =?UTF-8?B?dC10by1naW1wbGUuYzog4oCYaXNsX3ZhbF9mcmVl4oCZIHdhcyBub3QgZGVj?= =?UTF-8?B?bGFyZWQgaW4gdGhpcyBzY29wZQ==?= Date: Mon, 01 Jan 2024 09:27:54 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: other X-Bugzilla-Version: 6.5.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: eyalroz1 at gmx dot com 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: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: 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=3D113188 Bug ID: 113188 Summary: graphite-isl-ast-to-gimple.c: =E2=80=98isl_val_free=E2= =80=99 was not declared in this scope Product: gcc Version: 6.5.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: other Assignee: unassigned at gcc dot gnu.org Reporter: eyalroz1 at gmx dot com Target Milestone: --- I'm struggling trying to build GCC 6.5.0 on a newer system: Devuan GNU/Linux Excalibur (~=3D Debian Trixie). I'm using the following configuration: ./configure --disable-libsanitizer --disable-bootstrap --enable-languages= =3Dc,c++ and at some point, I get a couple of compilation errors about undeclared identifiers; the error is quoted below. Is there some way I could circumvent these? e.g. by disabling another compo= nent or replacing a version of some tool/library? ----------------- g++ -fno-PIE -c -g -O2 -DIN_GCC -fno-exceptions -fno-rtti -fasynchronous-unwind-tables -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wmissing-format-attribute -Woverloaded-virtual -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -DHAVE_CONFIG= _H -I. -I. -I../.././gcc -I../.././gcc/. -I../.././gcc/../include -I../.././gcc/../libcpp/include -I../.././gcc/../libdecnumber -I../.././gcc/../libdecnumber/bid -I../libdecnumber -I../.././gcc/../libbacktrace -o graphite-isl-ast-to-gimple.o -MT graphite-isl-ast-to-gimple.o -MMD -MP -MF ./.deps/graphite-isl-ast-to-gimple.TPo ../.././gcc/graphite-isl-ast-to-gimp= le.c ../.././gcc/graphite-isl-ast-to-gimple.c: In member function =E2=80=98tree_= node* translate_isl_ast_to_gimple::gcc_expression_from_isl_expr_int(tree, isl_ast_expr*)=E2=80=99: ../.././gcc/graphite-isl-ast-to-gimple.c:349:3: error: =E2=80=98isl_val_fre= e=E2=80=99 was not declared in this scope; did you mean =E2=80=98isl_vec_free=E2=80=99? 349 | isl_val_free (val); | ^~~~~~~~~~~~ | isl_vec_free ../.././gcc/graphite-isl-ast-to-gimple.c: In function =E2=80=98isl_ast_expr* get_upper_bound(isl_ast_node*)=E2=80=99: ../.././gcc/graphite-isl-ast-to-gimple.c:752:11: error: =E2=80=98isl_val_in= t_from_si=E2=80=99 was not declared in this scope; did you mean =E2=80=98isl_val_int_from_gmp= =E2=80=99? 752 | isl_val_int_from_si (isl_ast_expr_get_ctx (for_cond), 1); | ^~~~~~~~~~~~~~~~~~~ | isl_val_int_from_gmp=