mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-07-27 06:31:27 +00:00
Disable -gsplit-dwarf when using gcc 7 for causing a linking issue
See https://bugs.llvm.org/show_bug.cgi?id=34140 (Closes: #853526)
This commit is contained in:
parent
33117215ff
commit
296be108bd
3
debian/changelog
vendored
3
debian/changelog
vendored
@ -3,6 +3,9 @@ llvm-toolchain-4.0 (1:4.0.1-2) unstable; urgency=medium
|
|||||||
* Rebuild with gcc 7 to fix a relocation error (Closes: #866354)
|
* Rebuild with gcc 7 to fix a relocation error (Closes: #866354)
|
||||||
* ld.lld manpage wasn't installed
|
* ld.lld manpage wasn't installed
|
||||||
* Link LLDB with -latomic on powerpcspe (Closes: #872267)
|
* Link LLDB with -latomic on powerpcspe (Closes: #872267)
|
||||||
|
* Disable -gsplit-dwarf when using gcc 7 for causing a linking issue
|
||||||
|
See https://bugs.llvm.org/show_bug.cgi?id=34140
|
||||||
|
(Closes: #853526)
|
||||||
|
|
||||||
[ Katsuhiko Nishimra ]
|
[ Katsuhiko Nishimra ]
|
||||||
* Ensure /usr/bin/g++-$(GCC_VERSION) exists (Closes: #871591)
|
* Ensure /usr/bin/g++-$(GCC_VERSION) exists (Closes: #871591)
|
||||||
|
4
debian/rules
vendored
4
debian/rules
vendored
@ -38,8 +38,12 @@ endif
|
|||||||
ifeq ($(shell dpkg --compare-versions $(shell dpkg-query -W -f '$${Version}' binutils) ge 2.22.52.0.4 ; echo $$?),0)
|
ifeq ($(shell dpkg --compare-versions $(shell dpkg-query -W -f '$${Version}' binutils) ge 2.22.52.0.4 ; echo $$?),0)
|
||||||
# when using -gsplit-dwarf, it will requires extract-dwo which doesn't exist on precise:
|
# when using -gsplit-dwarf, it will requires extract-dwo which doesn't exist on precise:
|
||||||
# More: https://llvm.org/bugs/show_bug.cgi?id=28841
|
# More: https://llvm.org/bugs/show_bug.cgi?id=28841
|
||||||
|
ifeq ($(shell dpkg --compare-versions $(shell dpkg-query -W -f '$${Version}' g++-$(GCC_VERSION)) lt 7.1.0-7~ ; echo $$?),0)
|
||||||
|
# Do not pass -gsplit-dwarf with gcc 7. This is causing some linking issues
|
||||||
|
# More: https://bugs.llvm.org/show_bug.cgi?id=34140
|
||||||
CXXFLAGS_EXTRA += -gsplit-dwarf
|
CXXFLAGS_EXTRA += -gsplit-dwarf
|
||||||
endif
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
ifeq ($(shell dpkg --compare-versions $(shell dpkg-query -W -f '$${Version}' g++-$(GCC_VERSION)) lt 4.7.2-10~ ; echo $$?),0)
|
ifeq ($(shell dpkg --compare-versions $(shell dpkg-query -W -f '$${Version}' g++-$(GCC_VERSION)) lt 4.7.2-10~ ; echo $$?),0)
|
||||||
|
Loading…
Reference in New Issue
Block a user