2015-06-13 01:03:31 +02:00
|
|
|
TERMUX_PKG_HOMEPAGE=https://www.gnu.org/software/gdb/
|
|
|
|
TERMUX_PKG_DESCRIPTION="The standard GNU Debugger that runs on many Unix-like systems and works for many programming languages"
|
2019-01-21 13:53:58 +01:00
|
|
|
TERMUX_PKG_LICENSE="GPL-3.0"
|
2020-02-15 23:58:09 +01:00
|
|
|
TERMUX_PKG_VERSION=9.1
|
2020-03-20 08:54:28 +01:00
|
|
|
TERMUX_PKG_REVISION=2
|
2016-09-25 00:42:39 +02:00
|
|
|
TERMUX_PKG_SRCURL=https://mirrors.kernel.org/gnu/gdb/gdb-${TERMUX_PKG_VERSION}.tar.xz
|
2020-02-15 23:58:09 +01:00
|
|
|
TERMUX_PKG_SHA256=699e0ec832fdd2f21c8266171ea5bf44024bd05164fdf064e4d10cc4cf0d1737
|
2019-12-30 22:57:13 +01:00
|
|
|
TERMUX_PKG_DEPENDS="libc++, liblzma, libexpat, readline, ncurses, libmpfr, python, zlib"
|
2019-07-20 10:42:33 +02:00
|
|
|
TERMUX_PKG_BREAKS="gdb-dev"
|
|
|
|
TERMUX_PKG_REPLACES="gdb-dev"
|
2017-07-15 00:03:23 +02:00
|
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
|
|
|
--with-system-readline
|
|
|
|
--with-curses
|
2019-12-30 14:25:02 +01:00
|
|
|
--with-python=$TERMUX_PREFIX/bin/python
|
2017-07-15 00:03:23 +02:00
|
|
|
ac_cv_func_getpwent=no
|
|
|
|
ac_cv_func_getpwnam=no
|
|
|
|
"
|
2019-12-30 14:25:02 +01:00
|
|
|
TERMUX_PKG_RM_AFTER_INSTALL="share/gdb/syscalls share/gdb/system-gdbinit"
|
2015-06-13 01:03:31 +02:00
|
|
|
TERMUX_PKG_MAKE_INSTALL_TARGET="-C gdb install"
|
|
|
|
|
2016-09-04 00:45:08 +02:00
|
|
|
termux_step_pre_configure() {
|
2016-10-10 01:02:52 +02:00
|
|
|
# Fix "undefined reference to 'rpl_gettimeofday'" when building:
|
2016-09-04 00:45:08 +02:00
|
|
|
export gl_cv_func_gettimeofday_clobber=no
|
|
|
|
export gl_cv_func_gettimeofday_posix_signature=yes
|
2016-10-10 01:02:52 +02:00
|
|
|
export gl_cv_func_realpath_works=yes
|
|
|
|
export gl_cv_func_lstat_dereferences_slashed_symlink=yes
|
|
|
|
export gl_cv_func_memchr_works=yes
|
|
|
|
export gl_cv_func_stat_file_slash=yes
|
2017-07-15 00:03:23 +02:00
|
|
|
export gl_cv_func_frexp_no_libm=no
|
2018-02-01 22:01:54 +01:00
|
|
|
export gl_cv_func_strerror_0_works=yes
|
|
|
|
export gl_cv_func_working_strerror=yes
|
|
|
|
export gl_cv_func_getcwd_path_max=yes
|
2016-03-11 00:45:44 +01:00
|
|
|
}
|