Changes between Initial Version and Version 1 of Ticket #68178, comment 3
- Timestamp:
- Sep 21, 2023, 12:39:40 PM (14 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #68178, comment 3
initial v1 1 1 FWIW, I just built successfully with 2 2 3 port -v install rav1e configure.ldflags="-ld_classic -force_load /usr/lib/libiconv.dylib" configure.cflags 4 ="-Wl,-ld_classic" 3 {{{ 4 port -v install rav1e configure.ldflags="-ld_classic -force_load /usr/lib/libiconv.dylib" configure.cflags="-Wl,-ld_classic" 5 }}} 5 6 6 7 which is ugly, but works up to not-yet-found problems with differing header files 7 8 9 {{{ 8 10 otool -L /opt/local/bin/rav1e 9 10 11 /opt/local/bin/rav1e: 11 12 /usr/lib/libiconv.2.dylib (compatibility version 7.0.0, current version 7.0.0) 12 13 /opt/local/lib/libiconv.2.dylib (compatibility version 9.0.0, current version 9.1.0) 13 14 /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 1336.0.0) 15 }}} 14 16 15 the -force_loadprobably is portable to older macOS/xcode.17 the `-force_load` probably is portable to older macOS/xcode. 16 18 17 19 I don't think this is the right solution, but if one was, say, in the middle of building something with rav1e as a dependency, this might get the job done.