This is the mail archive of the libc-alpha@sources.redhat.com mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] Mips librt linking - Bugzilla 562


Sorry about taken so long to get this submitted, been really busy at work/

This patch was based on the recommendation's listed in http://sources.redhat.com/bugzilla/show_bug.cgi?id=562

**

--
----
Jim Gifford
jim@jg555.com
giffordj@linkline.com

FWD: 275410
IPKall: 360-968-1517

2004-12-16  Jim Gifford <giffordj@linkline.com>
	    Based on the Recommendation of Jakub Jelinek  <jakub@redhat.com> 
	    http://sources.redhat.com/bugzilla/show_bug.cgi?id=562

	* sysdeps/mips/Makefile : Added librt-sysdep_routines
	* sysdeps/unix/mips/rt-sysdep.S : New File to support librt-sysdep_routines

diff -Naur glibc-20041122.orig/sysdeps/mips/Makefile glibc-20041122/sysdeps/mips/Makefile
--- glibc-20041122.orig/sysdeps/mips/Makefile	2000-09-06 07:52:59.000000000 +0000
+++ glibc-20041122/sysdeps/mips/Makefile	2004-11-23 04:11:54.858132920 +0000
@@ -3,6 +3,10 @@
 		  sys/asm.h sgidefs.h
 endif
 
+ifeq ($(subdir),rt)
+librt-sysdep_routines += rt-sysdep
+endif
+
 ifeq ($(subdir),setjmp)
 sysdep_routines += setjmp_aux
 endif
diff -Naur glibc-20041122.orig/sysdeps/unix/mips/rt-sysdep.S glibc-20041122/sysdeps/unix/mips/rt-sysdep.S
--- glibc-20041122.orig/sysdeps/unix/mips/rt-sysdep.S	1970-01-01 00:00:00.000000000 +0000
+++ glibc-20041122/sysdeps/unix/mips/rt-sysdep.S	2004-11-23 04:12:23.705747416 +0000
@@ -0,0 +1 @@
+#include <sysdep.S>

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]