diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6113012ef7d..c62f13d9530 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 f7cea4b68ae..98a5c9e41b2 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. */