Skip to content

Instantly share code, notes, and snippets.

@aciidgh
Created December 27, 2015 17:04
Show Gist options
  • Save aciidgh/5ba8459ca493b5193779 to your computer and use it in GitHub Desktop.
Save aciidgh/5ba8459ca493b5193779 to your computer and use it in GitHub Desktop.
if let userLibPaths = getenv("DYLD_LIBRARY_PATH") {
userLibPaths.characters.split{$0 == ":"}.forEach {
let path = String($0)
if path.isDirectory {
args += ["-L\(path)"]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment