This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
lsts_glued/rules/gdb/cross.bash

33 lines
667 B
Bash

source $pkg_common
requires=\
(
'ncurses/host'
)
configure()
{
cd "$pkg_build_dir" &&
LDFLAGS="-static -L$cfg_dir_toolchain/lib" \
CFLAGS="-I$cfg_dir_toolchain/include" \
"../gdb-$version/configure" \
--prefix="$cfg_dir_toolchain" \
--target="$cfg_target_canonical" \
--host="$cfg_host_canonical" \
--build="$cfg_host_canonical" \
--with-build-sysroot="$cfg_dir_toolchain_sysroot" \
--with-sysroot="$cfg_dir_toolchain_sysroot" \
--disable-nls \
--disable-tui
}
build()
{
$cmd_make -C "$pkg_build_dir"
}
host_install()
{
$cmd_make -C "$pkg_build_dir" install
}