From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id CA01A3857C57; Sat, 25 Jul 2020 06:02:47 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org CA01A3857C57 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1595656967; bh=Q2JhfkLoU1BtTiV2e+M05s8CdJfFKIg6F424VrQd/Rw=; h=From:To:Subject:Date:In-Reply-To:References:From; b=M7OOpr2D1xxzcwMfAhycRaeQak11SLoJ//DzzWgLaT10+3ZnBEs97xVhIVB5yE8rC JNIGkpnCNGXToTkuCjlcwxqziJnajo9//7FMpFpeW2F03mbH4w7lRzcFSCjxUc+gxx AvKI/3+TxN1UzG8uqYPzG7eySMBtgX1xGrQz1/uU= From: "i at maskray dot me" To: gcc-bugs@gcc.gnu.org Subject: [Bug driver/93645] Support Clang 12 --ld-path= Date: Sat, 25 Jul 2020 06:02:47 +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: 10.0 X-Bugzilla-Keywords: patch X-Bugzilla-Severity: enhancement X-Bugzilla-Who: i at maskray dot me X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 10.3 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 X-BeenThere: gcc-bugs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-bugs mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Jul 2020 06:02:47 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D93645 --- Comment #4 from Fangrui Song --- https://sourceware.org/pipermail/gcc-patches/2020-July/550659.html [PATCH v= 3] Add --ld-path=3D to specify an arbitrary executable as the linker I changed the title to --ld-path because -fuse-ld=3D/absolute/path/to/ld is= not a good design. -fuse-ld=3D can mean the linker flavor (there can be option di= spatch on this option) & --ld-path can specify the path overriding -fuse-ld=3D's d= efault choice. -f* options are usually about code generation or language features. --ld-pa= th does not belong to the category so -f is not very appropriate. Clang 12 will have --ld-path.=