gdb ver. bump

This commit is contained in:
Rmys
2024-07-08 16:52:31 +03:00
parent 59a6bdef33
commit 8ab91c0b73
2 changed files with 19 additions and 7 deletions
+4 -3
View File
@@ -20,7 +20,7 @@ def setup():
--disable-nls \
--with-system-readline \
--enable-source-highlight \
--with-python=/usr/bin/python \
--with-python=/usr/bin/python3 \
--with-gdb-datadir=/usr/share/gdb \
--with-system-gdbinit=/etc/gdb/gdbinit \
--with-separate-debug-dir=/usr/lib/debug")
@@ -34,14 +34,15 @@ def install():
autotools.rawInstall('DESTDIR="%s"' % get.installDIR())
# to prevent conflict with binutils delete these files:
for libdel in ["libbfd.a", "libopcodes.a", "libctf.a", "libctf-nobfd.a"]:
for libdel in ["libbfd.a", "libopcodes.a", "libctf.a", "libctf-nobfd.a", "libsframe.a"]:
pisitools.remove("/usr/lib/%s" % libdel)
for hea in ["ansidecl", "bfd", "bfdlink", "diagnostics", "dis-asm", "plugin-api", "symcat", "ctf", "ctf-api"]:
for hea in ["ansidecl", "bfd", "bfdlink", "diagnostics", "dis-asm", "plugin-api", "symcat", "ctf", "ctf-api", "sframe-api", "sframe"]:
pisitools.remove("/usr/include/%s.h" % hea)
pisitools.remove("/usr/share/info/bfd.info")
pisitools.remove("/usr/share/info/ctf-spec.info")
pisitools.remove("/usr/share/info/sframe-spec.info")
shelltools.cd("..")
pisitools.dodoc("README*", "COPYING*", "ChangeLog*")