diff options
author | David O'Brien <obrien@FreeBSD.org> | 2000-12-21 23:18:56 +0000 |
---|---|---|
committer | David O'Brien <obrien@gcc.gnu.org> | 2000-12-21 23:18:56 +0000 |
commit | 78abb7b151d7c2865f5bb9e30135cbdb6b238b01 (patch) | |
tree | 337c0a6409df8d3cd3ebf37127bf31064baf17e1 /gcc/config/freebsd.h | |
parent | 8358c2c297f9f1b8147da6805f8db757f66c95b3 (diff) | |
download | gcc-78abb7b151d7c2865f5bb9e30135cbdb6b238b01.zip gcc-78abb7b151d7c2865f5bb9e30135cbdb6b238b01.tar.gz gcc-78abb7b151d7c2865f5bb9e30135cbdb6b238b01.tar.bz2 |
freebsd.h (LIB_SPEC): remove -kthread option.
2000-12-21 David O'Brien <obrien@FreeBSD.org>
* config/freebsd.h (LIB_SPEC): remove -kthread option.
Approved by: Richard Henderson <rth@redhat.com>
Message-ID: <20001220004807.C20358@redhat.com>
From-SVN: r38435
Diffstat (limited to 'gcc/config/freebsd.h')
-rw-r--r-- | gcc/config/freebsd.h | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/gcc/config/freebsd.h b/gcc/config/freebsd.h index f7cea4b..98a5c9e 100644 --- a/gcc/config/freebsd.h +++ b/gcc/config/freebsd.h @@ -60,15 +60,16 @@ Boston, MA 02111-1307, USA. */ libc, depending on whether we're doing profiling or need threads support. (simular to the default, except no -lg, and no -p). */ -#undef LIB_SPEC -#define LIB_SPEC \ - "%{!shared: \ - %{!pg:%{!pthread:%{!kthread:-lc} \ - %{kthread:-lpthread -lc}} \ - %{pthread:-lc_r}} \ - %{pg:%{!pthread:%{!kthread:-lc_p} \ - %{kthread:-lpthread_p -lc_p}} \ - %{pthread:-lc_r_p}}}" +#undef LIB_SPEC +#define LIB_SPEC " \ + %{!shared: \ + %{!pg: \ + %{!pthread:-lc} \ + %{pthread:-lc_r}} \ + %{pg: \ + %{!pthread:-lc_p} \ + %{pthread:-lc_r_p}} \ + }" /* Code generation parameters. */ |