Skip to content

Commit

Permalink
GDB: Enable XML support (JuliaPackaging#3659)
Browse files Browse the repository at this point in the history
Without this, GDB is incompatible with rr:

```
warning: Can not parse XML target description; XML support was disabled at compile time
Remote 'g' packet reply is too long (expected 560 bytes, got 816 bytes): [snip]
```
  • Loading branch information
Keno authored Sep 28, 2021
1 parent ae7d107 commit 8ae9665
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions G/GDB/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ sources = [
script = raw"""
apk add texinfo
cd $WORKSPACE/srcdir/gdb-10.1/
./configure --prefix=${prefix} --build=${MACHTYPE} --host=${target}
./configure --prefix=${prefix} --build=${MACHTYPE} --host=${target} --with-expat
make -j${nproc} all
make install
"""
Expand All @@ -40,7 +40,8 @@ products = [

# Dependencies that must be installed before this package can be built
dependencies = [
Dependency(PackageSpec(name="GMP_jll", uuid="781609d7-10c4-51f6-84f2-b8444358ff6d"), v"6.1.2")
Dependency(PackageSpec(name="GMP_jll", uuid="781609d7-10c4-51f6-84f2-b8444358ff6d")),
Dependency("Expat_jll"),
]

# Build the tarballs, and possibly a `build.jl` as well.
Expand Down

0 comments on commit 8ae9665

Please sign in to comment.