OSDN Git Service

2000-12-21 David O'Brien <obrien@FreeBSD.org>
authorobrien <obrien@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 21 Dec 2000 23:18:56 +0000 (23:18 +0000)
committerobrien <obrien@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 21 Dec 2000 23:18:56 +0000 (23:18 +0000)
* config/freebsd.h (LIB_SPEC): remove -kthread option.

Approved by:  Richard Henderson <rth@redhat.com>
              Message-ID: <20001220004807.C20358@redhat.com>

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38435 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/freebsd.h

index 6113012..c62f13d 100644 (file)
@@ -1,3 +1,7 @@
+2000-12-21  David O'Brien  <obrien@FreeBSD.org>
+
+       * config/freebsd.h (LIB_SPEC): remove -kthread option.
+
 2000-12-22  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
 
        * resource.c (mark_set_resources): Use MARK_SRC_DEST for
index f7cea4b..98a5c9e 100644 (file)
@@ -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.  */