Skip to content

Instantly share code, notes, and snippets.

@jballanc
Created October 19, 2009 21:31
Show Gist options
  • Save jballanc/213726 to your computer and use it in GitHub Desktop.
Save jballanc/213726 to your computer and use it in GitHub Desktop.
> 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