Changes between Initial Version and Version 1 of Ticket #66250, comment 6


Ignore:
Timestamp:
Sep 30, 2023, 9:08:39 AM (12 months ago)
Author:
nilason (Nicklas Larsson)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #66250, comment 6

    initial v1  
    1212/usr/bin/clang++ --version
    1313echo 'With LIBRARY_PATH set to $prefix/lib:'
    14 LIBRARY_PATH='/opt/local/lib' /usr/bin/clang++ -shared -o /tmp/test.dylib  /tmp/test.cpp
     14LIBRARY_PATH='/opt/local/lib' /usr/bin/clang++ -dynamiclib -o /tmp/test.dylib  /tmp/test.cpp
    1515/usr/bin/otool -L /tmp/test.dylib
    1616echo "With LIBRARY_PATH **not** set:"
    17 /usr/bin/clang++ -shared -o /tmp/test.dylib  /tmp/test.cpp
     17/usr/bin/clang++ -dynamiclib -o /tmp/test.dylib  /tmp/test.cpp
    1818/usr/bin/otool -L /tmp/test.dylib
    1919}}}