summaryrefslogtreecommitdiff
path: root/dev-util/ccache/files/ccache-3.7.12-objdump.patch
blob: f5387104e453b36cf8299a69bebd11a05d09d0fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
Allow ${CHOST}-objdump (or any other override)
--- a/test/suites/debug_prefix_map.bash
+++ b/test/suites/debug_prefix_map.bash
@@ -24,7 +24,7 @@ objdump_cmd() {
     if $HOST_OS_APPLE; then
         xcrun dwarfdump -r0 $1
     else
-        objdump -W $1
+        ${OBJDUMP-objdump} -W $1
     fi
 }