diff options
| author | Jan Beulich <jbeulich@suse.com> | 2025-10-10 15:59:18 +0200 |
|---|---|---|
| committer | Jan Beulich <jbeulich@suse.com> | 2025-10-10 15:59:18 +0200 |
| commit | b8c152b9a941edab397c42f30b5c0fa2cd12e751 (patch) | |
| tree | bb767dc26be1ec217b5f351b38adcfcd06406334 | |
| parent | 5f51d87cc0653b2fe6a7b87eb07222514ba876ce (diff) | |
| download | binutils-b8c152b9a941edab397c42f30b5c0fa2cd12e751.zip binutils-b8c152b9a941edab397c42f30b5c0fa2cd12e751.tar.gz binutils-b8c152b9a941edab397c42f30b5c0fa2cd12e751.tar.bz2 | |
objdump: enable PE support for Interix
This is just so the target won't need excluding in a forthcoming new
testcase. Without doing so objdump would fail saying "option -P/--private
not supported by this file".
| -rwxr-xr-x | binutils/configure | 2 | ||||
| -rw-r--r-- | binutils/configure.ac | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/binutils/configure b/binutils/configure index 71c52a3..b1c38b4 100755 --- a/binutils/configure +++ b/binutils/configure @@ -16607,7 +16607,7 @@ do powerpc*-*-aix* | rs6000-*-aix*) od_vectors="$od_vectors objdump_private_desc_xcoff" ;; - *-*-pe* | *-*-cygwin* | *-*-mingw*) + *-*-pe* | *-*-cygwin* | *-*-mingw* | *-*-interix*) od_vectors="$od_vectors objdump_private_desc_pe" ;; *-*-darwin*) diff --git a/binutils/configure.ac b/binutils/configure.ac index 93e8a4b..39563bf 100644 --- a/binutils/configure.ac +++ b/binutils/configure.ac @@ -465,7 +465,7 @@ changequote([,])dnl powerpc*-*-aix* | rs6000-*-aix*) od_vectors="$od_vectors objdump_private_desc_xcoff" ;; - *-*-pe* | *-*-cygwin* | *-*-mingw*) + *-*-pe* | *-*-cygwin* | *-*-mingw* | *-*-interix*) od_vectors="$od_vectors objdump_private_desc_pe" ;; *-*-darwin*) |
