Skip to content

Instantly share code, notes, and snippets.

@rdp
Created November 15, 2019 20:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rdp/a16ddbd5750cbf75d5b4de8ddbc3ccbb to your computer and use it in GitHub Desktop.
Save rdp/a16ddbd5750cbf75d5b4de8ddbc3ccbb to your computer and use it in GitHub Desktop.
crystal woe
crystal make Makefile:68: *** Could not locate llvm-config, make sure it is installed and in your PATH, or set LLVM_CONFIG. Stop.
this meant "llvm isn't linked in after it's installed" "it's "keg only" or whatever homebrew calls it" so you have to link it or manually use it, this:
$ find /usr -name llvm-config
/usr/local/Cellar/llvm@8/8.0.1/bin/llvm-config
$ PATH=/usr/local/Cellar/llvm@8/8.0.1_1/bin/:$PATH make
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment