Created
October 19, 2009 21:31
-
-
Save jballanc/213726 to your computer and use it in GitHub Desktop.
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
> cat hello.rb | |
puts "hello, world" | |
> macrubyc -o hello hello.rb | |
> file hello | |
hello: Mach-O 64-bit executable x86_64 | |
> ./hello | |
hello, world | |
> otool -L ./hello | |
./hello: | |
/Library/Frameworks/MacRuby.framework/Versions/0.5/usr/lib/libmacruby.dylib (compatibility version 0.5.0, current version 0.5.0) | |
/usr/lib/libobjc.A.dylib (compatibility version 1.0.0, current version 227.0.0) | |
/usr/lib/libstdc++.6.dylib (compatibility version 7.0.0, current version 7.9.0) | |
/usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 124.1.1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment