summary refs log tree commit diff
path: root/sysdeps/mach
diff options
context:
space:
mode:
authorThomas Schwinge <thomas@codesourcery.com>2012-11-01 18:54:57 +0100
committerThomas Schwinge <thomas@codesourcery.com>2012-11-01 21:24:45 +0100
commit7402596be74d948048ff6bc11c9978b51e2de69e (patch)
tree9122a1cd19feb30e924525b46d21cee763c48a95 /sysdeps/mach
parentd0d4f8689dcc4a975c9065534c54447e09433e85 (diff)
downloadglibc-7402596be74d948048ff6bc11c9978b51e2de69e.tar.gz
glibc-7402596be74d948048ff6bc11c9978b51e2de69e.tar.xz
glibc-7402596be74d948048ff6bc11c9978b51e2de69e.zip
Fix build of test cases on GNU Hurd that are statically linked.
Diffstat (limited to 'sysdeps/mach')
-rw-r--r--sysdeps/mach/hurd/Makefile10
1 files changed, 7 insertions, 3 deletions
diff --git a/sysdeps/mach/hurd/Makefile b/sysdeps/mach/hurd/Makefile
index 107eaafb05..ed77903a48 100644
--- a/sysdeps/mach/hurd/Makefile
+++ b/sysdeps/mach/hurd/Makefile
@@ -167,11 +167,15 @@ $(objpfx)librtld.map: $(rpcuserlibs:.so=_pic.a)
 CFLAGS-dl-load.c = -DEXTERNAL_MAP_FROM_FD
 endif
 
-# We need these libs to link static programs in the libc source tree, too.
-link-libc-static := -Wl,-\( \
+# Override the generic Makeconfig values so we link against the RPC libs.
+link-libc-static := -Wl,--start-group \
 		    $(patsubst %,$(common-objpfx)%.a,\
 			       libc mach/libmachuser hurd/libhurduser) \
-		    $(static-gnulib) -Wl,-\)
+		    $(static-gnulib) -Wl,--end-group
+link-libc-static-tests := -Wl,--start-group \
+		    $(patsubst %,$(common-objpfx)%.a,\
+			       libc mach/libmachuser hurd/libhurduser) \
+		    $(static-gnulib-tests) -Wl,--end-group
 
 ifeq ($(subdir),csu)