diff options
author | 2021-10-30 19:24:42 -0700 | |
---|---|---|
committer | 2021-10-30 19:24:42 -0700 | |
commit | e2eef2bb25fead44aedf73fd8ee55e902b82a4e9 (patch) | |
tree | 541d0c7cdb9ec2e42eb09d6b83df6bc684844559 | |
parent | ad3c19a1603d4b9fadaae15270974c1281d0cf0f (diff) | |
download | bun-e2eef2bb25fead44aedf73fd8ee55e902b82a4e9.tar.gz bun-e2eef2bb25fead44aedf73fd8ee55e902b82a4e9.tar.zst bun-e2eef2bb25fead44aedf73fd8ee55e902b82a4e9.zip |
[internal] Makefile
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | README.md | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -325,7 +325,7 @@ vendor-without-check: api analytics node-fallbacks runtime_js fallback_decoder b libarchive: cd src/deps/libarchive; \ (make clean || echo ""); \ - ./build/clean.sh; \ + (./build/clean.sh || echo ""); \ ./build/autogen.sh; \ ./configure --disable-shared --enable-static --with-pic --disable-bsdtar --disable-bsdcat --disable-rpath --enable-posix-regex-lib --without-xml2 --without-expat --without-openssl --without-iconv --without-zlib; \ make -j${CPUS}; \ @@ -915,7 +915,7 @@ Estimated: 30-90 minutes :( Install LLVM 12 and homebrew dependencies: ```bash -brew install llvm@12 coreutils libtool cmake libiconv automake openssl@1.1 ninja +brew install llvm@12 coreutils libtool cmake libiconv automake openssl@1.1 ninja gnu-sed ``` Bun (& the version of Zig) need LLVM 12 and Clang 12 (clang is part of LLVM). Weird build & runtime errors will happen otherwise. @@ -951,7 +951,7 @@ In `bun`: ```bash git submodule update --init --recursive --progress --depth=1 -make vendor dev +make vendor jsc identifier-cache dev ``` Verify it worked: |