summaryrefslogtreecommitdiff
path: root/tcwg_gnu-build.sh
diff options
context:
space:
mode:
authorThiago Jung Bauermann <thiago.bauermann@linaro.org>2023-10-05 23:08:45 -0300
committerThiago Bauermann <thiago.bauermann@linaro.org>2023-10-06 02:13:36 +0000
commit1692ec19eac1c7a3b424dfa8a8318426442ae3ba (patch)
tree3695b1a6d74db40ade9acd4f7b90ccaa5359bb05 /tcwg_gnu-build.sh
parent97176bee78983359f8fe81cc6717535f000407b3 (diff)
Revert "tcwg_gnu-build.sh: Apply GDB patch adding configure option to find distro debug info"
This reverts commit 731e34001dff4459f01af90717aa242ea60188b0. The patch was just committed upstream so we don't need to apply it locally anymore: https: //sourceware.org/git/?p=binutils-gdb.git;a=commitdiff;h=740ce35025a5a37d78b0ee2a363c35534eaa1a2a Change-Id: I443b8631bf145420befc449811fe2079bd4e5584
Diffstat (limited to 'tcwg_gnu-build.sh')
-rwxr-xr-xtcwg_gnu-build.sh13
1 files changed, 1 insertions, 12 deletions
diff --git a/tcwg_gnu-build.sh b/tcwg_gnu-build.sh
index 89a3179e..1b8c60c1 100755
--- a/tcwg_gnu-build.sh
+++ b/tcwg_gnu-build.sh
@@ -384,23 +384,12 @@ case "${rr[ci_project]}" in
component="${rr[ci_project]#tcwg_gnu_native_}"
component="${component#fast_}"
- declare -a build_patch=()
- if [ "${component}:${ci_target}" = check_gdb:arm ]; then
- # FIXME: Remove this workaround after the patch is accepted upstream.
- # This fixes inferiors compiled with the distro's compiler (such as
- # the Ada testcases) getting SIGILL right after start because GDB
- # can't find the ld.so debug info and thus inserts a regular
- # breakpoint instruction in a Thumb function. The patch has been
- # submitted upstream. We can revert this commit after it's accepted.
- build_patch=(--build_patch linaro-local/gdb-additional-debug-dirs)
- fi
-
run_step skip_on_fail -8 build_abe binutils
run_step skip_on_fail -7 build_abe gcc
run_step skip_on_fail x clean_sysroot
run_step skip_on_fail -5 build_abe linux
run_step skip_on_fail -4 build_abe glibc
- run_step skip_on_fail -3 build_abe gdb "${build_patch[@]}"
+ run_step skip_on_fail -3 build_abe gdb
run_step skip_on_fail -1 build_abe dejagnu
run_step skip_on_fail 0 build_abe "$component" -- "${runtestflags[@]}"
;;