Changes between Initial Version and Version 1 of Ticket #68226, comment 4
- Timestamp:
- Oct 2, 2023, 7:34:25 AM (14 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #68226, comment 4
initial v1 1 1 I have the same failure (on arm64 fwiw). 2 3 2 4 3 {{{ … … 14 13 }}} 15 14 16 I can't see the objdump command being executed by MacPorts, so I tried objdump --file-headers (which I ''think'' should work on any object file?) 17 18 This fails on any object file, even an empty command line tool project, e.g.: 15 I gather MacPorts is executing objdump -x file. I tried objdump -x and --file-headers, but this fails on any object file, even an empty command line tool project, e.g.: 19 16 20 17 {{{ … … 26 23 }}} 27 24 28 I've submitted a bug report to Apple re objdump in Xcode 15. 25 Assuming the image being checked was built by Xcode clang and is a mach-o (which is true in my case) presumably this openmpi-default configure test should use otool instead of objdump? 29 26 30 I've since noticed objdump has the same behaviour under Xcode 14.3.1 on Ventura 13.5.2 on intel, so perhaps --file-headers is a poor test? 27 There's obviously a lot of history about objdump vs otool I'm not up to speed on ...