From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id C78BF3858CD1; Sat, 18 Nov 2023 02:41:05 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C78BF3858CD1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1700275265; bh=Ce+spbmoiNYkZmtnMGywMaetfSiwZifHvIQe691thFs=; h=From:To:Subject:Date:In-Reply-To:References:From; b=hmk+PPYgI3oDGefhUV1PFbLMRCx69uLxCUaGzvwtASNPzq6J9ai8Y595EdFMISm7A yePnnNIp+0uWWx7uF4pDy4lqs9CxIvx6yeYfOY+1w7zHvAZr0Zm7eY7s7TMZ0/2a1g WnKhnoplVy/xViT14X/zAEUrkQj38Fc4PZwvIM+s= From: "aoliva at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug driver/108865] gcc on Windows fails with Unicode path to source file Date: Sat, 18 Nov 2023 02:41:02 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: driver X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: aoliva at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 13.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc 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=3D108865 Alexandre Oliva changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |aoliva at gcc dot gnu.org --- Comment #44 from Alexandre Oliva --- All configure --with-* and --enable-* options are stored in shell variables named with_* and enable_*, respectively, so it's just a matter of testing f= or yes (for --enable) or rather for no (for explicit --disable). Look for e.g. --enable-initfini-array around line 1932 in $top_srcdir/gcc/configure.ac, or with_avrlibc around line 1495 in gcc/config.gcc; you can do something simil= ar in gcc/config.host, without any explicit argument passing, because the config.{host,gcc} files are sourced by configure, so they inherit all shell variables.=