diff options
author | obrien <obrien@FreeBSD.org> | 2000-11-07 21:49:08 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2000-11-07 21:49:08 +0000 |
commit | 4b7105175fd99d1e2bf3118ed8be420013ab0cf6 (patch) | |
tree | 5a0a38c2144143109359e3a4ded20da8a27969a9 /contrib/gcc | |
parent | fc69b6ff5cdbc044a51c18eecd8b2ffc292802b1 (diff) | |
download | FreeBSD-src-4b7105175fd99d1e2bf3118ed8be420013ab0cf6.zip FreeBSD-src-4b7105175fd99d1e2bf3118ed8be420013ab0cf6.tar.gz |
Remove the -kthread option that matched [sort of] the LinuxThreads port.
This option depended on bits not part of the base system and required
people to install the LinuxThreads port in a manner non-consistent with
the workings of our Ports Collection.
The directions for properly linking with LinuxThreads are given by that
port at install time.
Requested by: jasone
Diffstat (limited to 'contrib/gcc')
-rw-r--r-- | contrib/gcc/config/freebsd.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/contrib/gcc/config/freebsd.h b/contrib/gcc/config/freebsd.h index b7985ed..3cf3bad 100644 --- a/contrib/gcc/config/freebsd.h +++ b/contrib/gcc/config/freebsd.h @@ -77,11 +77,12 @@ Boston, MA 02111-1307, USA. */ #define LIB_SPEC "\ %{!shared: \ %{!pg: \ - %{!pthread:%{!kthread:-lc}%{kthread:-lpthread -lc}} \ + %{!pthread:-lc} \ %{pthread:-lc_r}} \ %{pg: \ - %{!pthread:%{!kthread:-lc_p}%{kthread:-lpthread_p -lc_p}} \ - %{pthread:-lc_r_p}}}" + %{!pthread:-lc_p} \ + %{pthread:-lc_r_p}} \ + }" /************************[ Target stuff ]***********************************/ |