From: David O'Brien Date: Thu, 21 Dec 2000 23:18:56 +0000 (+0000) Subject: freebsd.h (LIB_SPEC): remove -kthread option. X-Git-Tag: prereleases/libstdc++-2.92~2080 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=78abb7b151d7c2865f5bb9e30135cbdb6b238b01;p=thirdparty%2Fgcc.git freebsd.h (LIB_SPEC): remove -kthread option. 2000-12-21 David O'Brien * config/freebsd.h (LIB_SPEC): remove -kthread option. Approved by: Richard Henderson Message-ID: <20001220004807.C20358@redhat.com> From-SVN: r38435 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6113012ef7d9..c62f13d95306 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2000-12-21 David O'Brien + + * config/freebsd.h (LIB_SPEC): remove -kthread option. + 2000-12-22 Michael Hayes * resource.c (mark_set_resources): Use MARK_SRC_DEST for diff --git a/gcc/config/freebsd.h b/gcc/config/freebsd.h index f7cea4b68ae4..98a5c9e41b28 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. */