Created
January 17, 2012 18:26
-
-
Save wycats/1627976 to your computer and use it in GitHub Desktop.
How to debug dynamic loading
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
export DYLD_PRINT_OPTS="1" | |
export DYLD_PRINT_ENV="1" | |
export DYLD_PRINT_LIBRARIES="1" | |
export DYLD_PRINT_LIBRARIES_POST_LAUNCH="1" | |
export DYLD_PRINT_APIS="1" | |
export DYLD_PRINT_BINDINGS="1" | |
export DYLD_PRINT_INITIALIZERS="1" | |
export DYLD_PRINT_REBASINGS="1" | |
export DYLD_PRINT_SEGMENTS="1" | |
export DYLD_PRINT_STATISTICS="1" | |
export DYLD_PRINT_DOFS="1" | |
export DYLD_PRINT_RPATHS="1" | |
bundle exec thin start | |
#rails s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment