diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2015-08-07 01:38:39 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2015-08-07 01:38:39 +0200 |
commit | edd4cbcf83fb466dd8a1b5d63d55b1fea96356fe (patch) | |
tree | 525d4c7405e67c6b2cf2c77f895f8d654ae825d7 /ChangeLog | |
parent | 5e29dd573777197fc4d12c1bdea8f6d04e505391 (diff) | |
download | glibc-edd4cbcf83fb466dd8a1b5d63d55b1fea96356fe.tar.gz glibc-edd4cbcf83fb466dd8a1b5d63d55b1fea96356fe.tar.xz glibc-edd4cbcf83fb466dd8a1b5d63d55b1fea96356fe.zip |
Fix gcrt0.o compilation
When static-start-installed-name is different from start-installed-name, we must not use the shared objects. * csu/Makefile (extra-objs): Add gmon-start.o when building shared library and $(static-start-installed-name) is different from $(start-installed-name). $(objpfx)g$(static-start-installed-name): When building shared library and $(static-start-installed-name) is different from $(static-start-installed-name), revert to non-shared rule, i.e. using $(objpfx)% and gmon-start.o.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index f3456baf46..1994e44871 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,19 @@ +2015-08-07 Samuel Thibault <samuel.thibault@ens-lyon.org> + + Fix gcrt0.o compilation + + When static-start-installed-name is different from + start-installed-name, we must not use the shared objects. + + * csu/Makefile + (extra-objs): Add gmon-start.o when building shared library and + $(static-start-installed-name) is different from + $(start-installed-name). + $(objpfx)g$(static-start-installed-name): When building shared + library and $(static-start-installed-name) is different from + $(static-start-installed-name), revert to non-shared rule, + i.e. using $(objpfx)% and gmon-start.o. + 2015-08-06 Joseph Myers <joseph@codesourcery.com> [BZ #16519] |