diff options
author | 2021-10-30 18:20:53 -0700 | |
---|---|---|
committer | 2021-10-30 18:20:53 -0700 | |
commit | ad3c19a1603d4b9fadaae15270974c1281d0cf0f (patch) | |
tree | d774cc69f7cf38c544dbe07846ef6f7cd5e83607 | |
parent | 07bb25f7b17e08b28a544400f3ad297affe79bcc (diff) | |
download | bun-ad3c19a1603d4b9fadaae15270974c1281d0cf0f.tar.gz bun-ad3c19a1603d4b9fadaae15270974c1281d0cf0f.tar.zst bun-ad3c19a1603d4b9fadaae15270974c1281d0cf0f.zip |
Linking instructions in Makefile
-rw-r--r-- | README.md | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -926,10 +926,12 @@ Make sure LLVM 12 is in your `$PATH`: which clang-12 ``` -If it is not, you will have to run this to add it: +If it is not, you will have to run this to link it: ```bash export PATH=$(brew --prefix llvm@12)/bin:$PATH +export LDFLAGS="$LDFLAGS -L$(brew --prefix llvm@12)/lib" +export CPPFLAGS="$CPPFLAGS -I$(brew --prefix llvm@12)/include" ``` On fish that looks like `fish_add_path (brew --prefix llvm@12)/bin` |