mirror of git://sourceware.org/git/glibc.git
Replace crtendS.o with crtend.o for static link
This commit is contained in:
parent
9e5757f801
commit
189e935bf8
|
|
@ -1,5 +1,7 @@
|
||||||
2012-09-24 H.J. Lu <hongjiu.lu@intel.com>
|
2012-09-24 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
|
* Makeconfig (+postctorT): Replace crtendS.o with crtend.o.
|
||||||
|
|
||||||
[BZ #14562]
|
[BZ #14562]
|
||||||
* malloc/arena.c (heap_trim): Properly get fencepost and adjust
|
* malloc/arena.c (heap_trim): Properly get fencepost and adjust
|
||||||
new chunk size with MALLOC_ALIGN_MASK.
|
new chunk size with MALLOC_ALIGN_MASK.
|
||||||
|
|
|
||||||
|
|
@ -581,7 +581,7 @@ endif
|
||||||
+postctorS = `$(CC) $(sysdep-LDFLAGS) --print-file-name=crtendS.o`
|
+postctorS = `$(CC) $(sysdep-LDFLAGS) --print-file-name=crtendS.o`
|
||||||
# Variants of the two previous definitions for statically linking programs.
|
# Variants of the two previous definitions for statically linking programs.
|
||||||
+prectorT = `$(CC) $(sysdep-LDFLAGS) --print-file-name=crtbeginT.o`
|
+prectorT = `$(CC) $(sysdep-LDFLAGS) --print-file-name=crtbeginT.o`
|
||||||
+postctorT = `$(CC) $(sysdep-LDFLAGS) --print-file-name=crtendS.o`
|
+postctorT = `$(CC) $(sysdep-LDFLAGS) --print-file-name=crtend.o`
|
||||||
+interp = $(addprefix $(elf-objpfx),interp.os)
|
+interp = $(addprefix $(elf-objpfx),interp.os)
|
||||||
csu-objpfx = $(common-objpfx)csu/
|
csu-objpfx = $(common-objpfx)csu/
|
||||||
elf-objpfx = $(common-objpfx)elf/
|
elf-objpfx = $(common-objpfx)elf/
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue