diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2024-07-06 20:32:50 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2024-08-07 10:08:21 -0500 |
commit | c5c08854322efc2aea8f8bcf51a544976fd86a12 (patch) | |
tree | 7b64fb0ba8f964d3c24b0c687ee99020f8dd4a78 /system/binutils/vers-tests-eabi.patch | |
parent | 9852d13a3263e0d163e6cb180d6c3edbd54e5858 (diff) | |
download | packages-c5c08854322efc2aea8f8bcf51a544976fd86a12.tar.gz packages-c5c08854322efc2aea8f8bcf51a544976fd86a12.tar.bz2 packages-c5c08854322efc2aea8f8bcf51a544976fd86a12.tar.xz packages-c5c08854322efc2aea8f8bcf51a544976fd86a12.zip |
system/binutils: Update to 2.42
Closes: #1221, #1206
Diffstat (limited to 'system/binutils/vers-tests-eabi.patch')
-rw-r--r-- | system/binutils/vers-tests-eabi.patch | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/system/binutils/vers-tests-eabi.patch b/system/binutils/vers-tests-eabi.patch deleted file mode 100644 index 2ce59cee2..000000000 --- a/system/binutils/vers-tests-eabi.patch +++ /dev/null @@ -1,33 +0,0 @@ -By default, the vers4 tests use `sed` to look for `Version` lines. - -The problem is, on 32-bit ARM targets we have Version5 EABI. This causes -the tests to fail, like so: - - objdump --private-headers tmpdir/vers4b | sed -n /Version/,\$p > tmpdir/objdump.out - private flags = 0x5000400: [Version5 EABI] [hard-float ABI] - - objdump_emptyverstuff: did not expect any output from objdump - FAIL: vers4b - -Take 'private flags' lines out of the output to fix this. - -Upstream-URL: https://sourceware.org/bugzilla/show_bug.cgi?id=30924 - ---- binutils-2.41/ld/testsuite/ld-elfvers/vers.exp.old 2023-09-30 21:51:47.304868575 -0500 -+++ binutils-2.41/ld/testsuite/ld-elfvers/vers.exp 2023-09-30 21:52:49.738253244 -0500 -@@ -215,11 +215,14 @@ - # this probably means that there is version information in libc, so we - # can't really perform this test. - return 1 -+ } else { if { [string match "*Version? EABI*" $exec_output] } then { -+# there is EABI Version information in the private flags of the binary. -+ return 1 - } else { - verbose -log "$exec_output" - verbose -log "objdump_emptyverstuff: did not expect any output from objdump" - return 0 -- } } -+ } } } - - } - |