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]

add rt-sysdep.S for ia64


Based on a tip by Jakub, patch below adds rt-sysdep.S for ia64 in the
same way as was done for s390.

Without this patch, there will be unresolved references in librt for
symbol __syscall_error().

Please apply.

Thanks,

	--david

ChangeLog

2004-04-22  David Mosberger  <davidm@hpl.hp.com>

	* sysdeps/unix/sysv/linux/ia64/Makefile (librt-routines): Mention
	  rt-sysdep.
	* sysdeps/unix/sysv/linux/ia64/rt-sysdep.S: New file.

Index: sysdeps/unix/sysv/linux/ia64/Makefile
--- sysdeps/unix/sysv/linux/ia64/Makefile
+++ sysdeps/unix/sysv/linux/ia64/Makefile
@@ -18,6 +18,10 @@
 sysdep-rtld-routines += $(sysdep-dl-routines)
 endif
 
+ifeq ($(subdir),rt)
+librt-routines += rt-sysdep
+endif
+
 # This is a crude attempt to silence the compiler which complains about
 # then 'current' definition in the kernel headers.
 CPPFLAGS += -D_ASM_IA64_CURRENT_H
Index: sysdeps/unix/sysv/linux/ia64/rt-sysdep.S
--- /dev/null
+++ sysdeps/unix/sysv/linux/ia64/rt-sysdep.S
@@ -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]