mirror of git://sourceware.org/git/glibc.git
* csu/Makefile ($(csu-dummies) target rule): Don't use a temp C file.
Depend on $(before-compile).
This commit is contained in:
parent
4b0b588239
commit
c6696b7957
|
@ -1,5 +1,8 @@
|
||||||
2003-05-04 Roland McGrath <roland@redhat.com>
|
2003-05-04 Roland McGrath <roland@redhat.com>
|
||||||
|
|
||||||
|
* csu/Makefile ($(csu-dummies) target rule): Don't use a temp C file.
|
||||||
|
Depend on $(before-compile).
|
||||||
|
|
||||||
* csu/Makefile ($(objpfx)crt%.o): Replace implicit rule with a static
|
* csu/Makefile ($(objpfx)crt%.o): Replace implicit rule with a static
|
||||||
pattern rule. The implicit rule could be ruled out when $(objpfx)
|
pattern rule. The implicit rule could be ruled out when $(objpfx)
|
||||||
didn't exist at the time of its consideration (ugh!).
|
didn't exist at the time of its consideration (ugh!).
|
||||||
|
|
|
@ -179,11 +179,9 @@ $(addprefix $(objpfx),$(sort g$(start-installed-name) \
|
||||||
|
|
||||||
# These extra files are sometimes expected by system standard linking
|
# These extra files are sometimes expected by system standard linking
|
||||||
# procedures, but we have nothing for them to do. So compile empty files.
|
# procedures, but we have nothing for them to do. So compile empty files.
|
||||||
$(addprefix $(objpfx),$(filter-out $(start-installed-name),$(csu-dummies))):
|
$(addprefix $(objpfx),$(filter-out $(start-installed-name),$(csu-dummies))):\
|
||||||
@-rm -f $(@:.o=.c)
|
$(before-compile)
|
||||||
echo > $(@:.o=.c)
|
$(COMPILE.c) -o $@ -x c /dev/null
|
||||||
$(COMPILE.c) $(@:.o=.c) $(OUTPUT_OPTION)
|
|
||||||
rm -f $(@:.o=.c)
|
|
||||||
|
|
||||||
# These headers are used by the startup code.
|
# These headers are used by the startup code.
|
||||||
$(objpfx)abi-tag.h: $(..)abi-tags
|
$(objpfx)abi-tag.h: $(..)abi-tags
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
2003-05-04 Roland McGrath <roland@redhat.com>
|
||||||
|
|
||||||
|
* Makefile ($(objpfx)../libc.so): New target.
|
||||||
|
|
||||||
2003-04-26 Ulrich Drepper <drepper@redhat.com>
|
2003-04-26 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* pthread.c (__pthread_initialize_manager): Remove one last
|
* pthread.c (__pthread_initialize_manager): Remove one last
|
||||||
|
|
|
@ -222,6 +222,7 @@ $(addprefix $(objpfx), \
|
||||||
$(addprefix $(objpfx), $(tests-reverse)): \
|
$(addprefix $(objpfx), $(tests-reverse)): \
|
||||||
$(objpfx)../libc.so $(objpfx)libpthread.so \
|
$(objpfx)../libc.so $(objpfx)libpthread.so \
|
||||||
$(objpfx)libpthread_nonshared.a
|
$(objpfx)libpthread_nonshared.a
|
||||||
|
$(objpfx)../libc.so: $(common-objpfx)libc.so ;
|
||||||
$(addprefix $(objpfx),$(librt-tests)): $(common-objpfx)rt/librt.so
|
$(addprefix $(objpfx),$(librt-tests)): $(common-objpfx)rt/librt.so
|
||||||
$(objpfx)unload: $(common-objpfx)dlfcn/libdl.so
|
$(objpfx)unload: $(common-objpfx)dlfcn/libdl.so
|
||||||
$(objpfx)unload.out: $(objpfx)libpthread.so $(objpfx)libpthread_nonshared.a
|
$(objpfx)unload.out: $(objpfx)libpthread.so $(objpfx)libpthread_nonshared.a
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
2003-05-04 Roland McGrath <roland@redhat.com>
|
||||||
|
|
||||||
|
* Makefile ($(objpfx)../libc.so): New target.
|
||||||
|
|
||||||
2003-05-02 Ulrich Drepper <drepper@redhat.com>
|
2003-05-02 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h
|
* sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h
|
||||||
|
|
|
@ -314,6 +314,7 @@ $(objpfx)tst-unload: $(common-objpfx)dlfcn/libdl.so
|
||||||
$(addprefix $(objpfx), $(tests-reverse)): \
|
$(addprefix $(objpfx), $(tests-reverse)): \
|
||||||
$(objpfx)../libc.so $(objpfx)libpthread.so \
|
$(objpfx)../libc.so $(objpfx)libpthread.so \
|
||||||
$(objpfx)libpthread_nonshared.a
|
$(objpfx)libpthread_nonshared.a
|
||||||
|
$(objpfx)../libc.so: $(common-objpfx)libc.so ;
|
||||||
$(addprefix $(objpfx),$(tests-static)): $(objpfx)libpthread.a
|
$(addprefix $(objpfx),$(tests-static)): $(objpfx)libpthread.a
|
||||||
|
|
||||||
$(objpfx)tst-atfork2.out: $(objpfx)tst-atfork2mod.so
|
$(objpfx)tst-atfork2.out: $(objpfx)tst-atfork2mod.so
|
||||||
|
|
Loading…
Reference in New Issue