Skip to content
Snippets Groups Projects
Verified Commit 267c7486 authored by jD91mZM2's avatar jD91mZM2
Browse files

Add libexpat to GDB

parent ce969b5a
No related branches found
No related tags found
1 merge request!240Add libexpat to GDB
GIT=https://gitlab.redox-os.org/redox-os/binutils-gdb.git GIT=https://gitlab.redox-os.org/redox-os/binutils-gdb.git
BRANCH=redox BRANCH=redox
GIT_UPSTREAM=git://sourceware.org/git/binutils-gdb.git GIT_UPSTREAM=git://sourceware.org/git/binutils-gdb.git
BUILD_DEPENDS=(relibc) BUILD_DEPENDS=(expat)
function recipe_version { function recipe_version {
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
...@@ -18,7 +18,8 @@ function recipe_build { ...@@ -18,7 +18,8 @@ function recipe_build {
mkdir -p "$sysroot/usr" mkdir -p "$sysroot/usr"
ln -sf "$sysroot/include" "$sysroot/usr/include" ln -sf "$sysroot/include" "$sysroot/usr/include"
ln -sf "$sysroot/lib" "$sysroot/usr/lib" ln -sf "$sysroot/lib" "$sysroot/usr/lib"
export LDFLAGS="--static" export CPPFLAGS="-I$sysroot/include -g"
export LDFLAGS="-L$sysroot/lib -static -g"
./configure \ ./configure \
--build=${BUILD} \ --build=${BUILD} \
--host=${HOST} \ --host=${HOST} \
...@@ -27,6 +28,10 @@ function recipe_build { ...@@ -27,6 +28,10 @@ function recipe_build {
--with-sysroot=/ \ --with-sysroot=/ \
--with-build-sysroot="$sysroot" \ --with-build-sysroot="$sysroot" \
--enable-gdb \ --enable-gdb \
--with-expat \
--with-multilib \
--with-interwork \
--enable-targets=x86_64-unknown-redox \
--disable-nls \ --disable-nls \
--disable-werror --disable-werror
"$REDOX_MAKE" -j"$($NPROC)" "$REDOX_MAKE" -j"$($NPROC)"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment