Created
July 19, 2011 00:34
-
-
Save othiym23/1091038 to your computer and use it in GitHub Desktop.
dynamically linked libraries on OS X Snow Leopard
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> find . -name "*.a" -print | xargs otool -L | |
Archive : ./node_modules/sqlite/build/default/deps/sqlite/libsqlite3-bundled.a | |
./node_modules/sqlite/build/default/deps/sqlite/libsqlite3-bundled.a(sqlite3_1.o): | |
Archive : ./node_modules/sqlite/deps/mpool-2.1.0/libmpool.a | |
./node_modules/sqlite/deps/mpool-2.1.0/libmpool.a(mpool.o): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> otool -L `which mongod` | |
/usr/local/bin/mongod: | |
/usr/lib/libstdc++.6.dylib (compatibility version 7.0.0, current version 7.4.0) | |
/usr/lib/libgcc_s.1.dylib (compatibility version 1.0.0, current version 1.0.0) | |
/usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 111.1.3) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> otool -L `which node` | |
/usr/local/bin/node: | |
/System/Library/Frameworks/Carbon.framework/Versions/A/Carbon (compatibility version 2.0.0, current version 152.0.0) | |
/usr/lib/libssl.0.9.8.dylib (compatibility version 0.9.8, current version 0.9.8) | |
/usr/lib/libcrypto.0.9.8.dylib (compatibility version 0.9.8, current version 0.9.8) | |
/usr/lib/libz.1.dylib (compatibility version 1.0.0, current version 1.2.3) | |
/usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 125.2.11) | |
/usr/lib/libutil.dylib (compatibility version 1.0.0, current version 1.0.0) | |
/usr/lib/libstdc++.6.dylib (compatibility version 7.0.0, current version 7.9.0) | |
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation (compatibility version 150.0.0, current version 550.43.0) | |
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices (compatibility version 1.0.0, current version 38.0.0) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment