https://gcc.gnu.org/bugzilla/show_bug.cgi?id=118041
Bug ID: 118041
Summary: install.texi typos in --enable-host-pie
Product: gcc
Version: 15.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: other
Assignee: unassigned at gcc dot gnu.org
Reporter: heiko at hexco dot de
Target Milestone: ---
Created attachment 59866
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=59866&action=edit
Patch to fix two typos in --enable-host-pie
There are some extra parentheses here
'--enable-host-pie) may be used with --enable-host-shared), in which case -fPIC
is used when compiling, and -pie when linking.'
should be
'--enable-host-pie may be used with --enable-host-shared, in which case -fPIC
is used when compiling, and -pie when linking.'
A patch is appended.