Skip to content

Instantly share code, notes, and snippets.

@seanknox
Created April 14, 2014 22:58
Show Gist options
  • Save seanknox/10688629 to your computer and use it in GitHub Desktop.
Save seanknox/10688629 to your computer and use it in GitHub Desktop.
Fix for ruby with Xcode 5.1
82c82
< CONFIG["LIBRUBY_DLDFLAGS"] = "-undefineddynamic_lookup -multiply_definedsuppress -install_name $(libdir)/$(LIBRUBY_SO) -current_version $(MAJOR).$(MINOR).$(TEENY) -compatibility_version $(ruby_version) $(XLDFLAGS)"
---
> CONFIG["LIBRUBY_DLDFLAGS"] = "-undefineddynamic_lookup -multiply_defined suppress -install_name $(libdir)/$(LIBRUBY_SO) -current_version $(MAJOR).$(MINOR).$(TEENY) -compatibility_version $(ruby_version) $(XLDFLAGS)"
125c125
< CONFIG["DLDFLAGS"] = "-undefineddynamic_lookup -multiply_definedsuppress"
---
> CONFIG["DLDFLAGS"] = "-undefineddynamic_lookup -multiply_defined suppress"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment