|
From: Nicholas N. <nj...@ca...> - 2004-10-19 14:23:51
|
CVS commit by nethercote:
Whoops, syscall.S is platform-specific, and so must go in x86-linux/ rather
than x86/.
A x86-linux/syscall.S 1.1
M +2 -2 Makefile.am 1.93
M +0 -1 x86/Makefile.am 1.18
M +1 -0 x86-linux/Makefile.am 1.5
R x86/syscall.S 1.1
--- valgrind/coregrind/Makefile.am #1.92:1.93
@@ -112,6 +112,6 @@
vg_libpthread.c \
vg_libpthread_unimp.c \
- ${VG_ARCH}/syscall.S \
- ${VG_ARCH}/libpthread.c
+ ${VG_ARCH}/libpthread.c \
+ ${VG_PLATFORM}/syscall.S
libpthread_so_DEPENDENCIES = $(srcdir)/vg_libpthread.vs
libpthread_so_LDFLAGS = -Werror -fno-omit-frame-pointer -UVG_LIBDIR \
--- valgrind/coregrind/x86/Makefile.am #1.17:1.18
@@ -22,5 +22,4 @@
helpers.S \
dispatch.S \
- syscall.S \
signal.c \
state.c
--- valgrind/coregrind/x86-linux/Makefile.am #1.4:1.5
@@ -13,3 +13,4 @@
libplatform_a_SOURCES = \
ldt.c \
+ syscall.S \
syscalls.c
|