mirror of git://sourceware.org/git/glibc.git
1998-08-18 Roland McGrath <roland@baalperazim.frob.com>
* Rules (binaries-static, binaries-shared static pattern rules):
Depend on lib%, not just libc%, from $(link-libc{,-static}).
* sysdeps/mach/hurd/Makefile (link-libc-static): New variable; set
this here, overriding Makeconfig generic value so we link against
the RPC libs.
This commit is contained in:
parent
9992e360c8
commit
c82e61161c
|
|
@ -1,3 +1,12 @@
|
||||||
|
1998-08-18 Roland McGrath <roland@baalperazim.frob.com>
|
||||||
|
|
||||||
|
* Rules (binaries-static, binaries-shared static pattern rules):
|
||||||
|
Depend on lib%, not just libc%, from $(link-libc{,-static}).
|
||||||
|
|
||||||
|
* sysdeps/mach/hurd/Makefile (link-libc-static): New variable; set
|
||||||
|
this here, overriding Makeconfig generic value so we link against
|
||||||
|
the RPC libs.
|
||||||
|
|
||||||
1998-08-17 Ulrich Drepper <drepper@cygnus.com>
|
1998-08-17 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
* posix/tstgetopt.c (options): Add NULL entry at end
|
* posix/tstgetopt.c (options): Add NULL entry at end
|
||||||
|
|
|
||||||
|
|
@ -125,6 +125,22 @@ $(inst_libdir)/libc.so: $(rpcuserlibs)
|
||||||
ifeq (elf,$(subdir))
|
ifeq (elf,$(subdir))
|
||||||
$(objpfx)librtld.os: $(rpcuserlibs:.so=_pic.a)
|
$(objpfx)librtld.os: $(rpcuserlibs:.so=_pic.a)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
# We need these libs to link static programs in the libc source tree, too.
|
||||||
|
ifeq (yes,$(build-static))
|
||||||
|
link-libc-static := -Wl,-\( \
|
||||||
|
$(patsubst %,$(common-objpfx)%.a,\
|
||||||
|
libc mach/libmachuser hurd/libhurduser) \
|
||||||
|
$(gnulib) -Wl,-\)
|
||||||
|
else
|
||||||
|
ifeq (yes,$(build-shared))
|
||||||
|
# We can try to link the programs with lib*_pic.a...
|
||||||
|
link-libc-static := $(link-libc) -Wl,-\( \
|
||||||
|
$(patsubst %,$(common-objpfx)%_pic.a,\
|
||||||
|
libc mach/libmachuser hurd/libhurduser) \
|
||||||
|
$(gnulib) -Wl,-\)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq (hurd, $(subdir))
|
ifeq (hurd, $(subdir))
|
||||||
sysdep_routines += cthreads
|
sysdep_routines += cthreads
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue