Attach arm issues with C++ exception unwinding
[termux-packages] / packages / gdb / build.sh
CommitLineData
59f0d218
FF
1TERMUX_PKG_HOMEPAGE=https://www.gnu.org/software/gdb/
2TERMUX_PKG_DESCRIPTION="The standard GNU Debugger that runs on many Unix-like systems and works for many programming languages"
3TERMUX_PKG_DEPENDS="liblzma, libexpat, readline"
571e5ce2 4TERMUX_PKG_VERSION=8.0
d1f566f7 5TERMUX_PKG_REVISION=1
722ed12d 6TERMUX_PKG_SRCURL=https://mirrors.kernel.org/gnu/gdb/gdb-${TERMUX_PKG_VERSION}.tar.xz
571e5ce2 7TERMUX_PKG_SHA256=f6a24ffe4917e67014ef9273eb8b547cb96a13e5ca74895b06d683b391f3f4ee
59f0d218 8# gdb can not build with our normal --disable-static: https://sourceware.org/bugzilla/show_bug.cgi?id=15916
571e5ce2
FF
9TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
10--with-system-readline
11--with-curses
12--enable-static
13ac_cv_func_getpwent=no
14ac_cv_func_getpwnam=no
15"
59f0d218 16TERMUX_PKG_RM_AFTER_INSTALL="share/gdb/python share/gdb/syscalls share/gdb/system-gdbinit"
59f0d218
FF
17TERMUX_PKG_MAKE_INSTALL_TARGET="-C gdb install"
18TERMUX_PKG_BUILD_IN_SRC="yes"
19
7ce56385 20termux_step_pre_configure() {
bf76a820 21 # Fix "undefined reference to 'rpl_gettimeofday'" when building:
7ce56385
FF
22 export gl_cv_func_gettimeofday_clobber=no
23 export gl_cv_func_gettimeofday_posix_signature=yes
bf76a820
FF
24 export gl_cv_func_realpath_works=yes
25 export gl_cv_func_lstat_dereferences_slashed_symlink=yes
26 export gl_cv_func_memchr_works=yes
27 export gl_cv_func_stat_file_slash=yes
571e5ce2 28 export gl_cv_func_frexp_no_libm=no
839f6ac4 29}