diff options
author | 2021-11-24 17:26:02 +0000 | |
---|---|---|
committer | 2021-11-24 17:26:02 +0000 | |
commit | f7dbf5ac3892a27bcbb99072b57fcd46e57a51b2 (patch) | |
tree | 0bf9077695873cb0dfc841ba3a06a0d6c97bc8bd /Makefile | |
parent | 283a01493c6c4b5ba155de15fde52e6637bdbc01 (diff) | |
download | bun-f7dbf5ac3892a27bcbb99072b57fcd46e57a51b2.tar.gz bun-f7dbf5ac3892a27bcbb99072b57fcd46e57a51b2.tar.zst bun-f7dbf5ac3892a27bcbb99072b57fcd46e57a51b2.zip |
deps: add missing mimalloc dep to jsc bindings header generator
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -40,7 +40,7 @@ CC = $(shell which clang-12 2>/dev/null || which clang) CXX = $(shell which clang++-12 2>/dev/null || which clang++) # macOS sed is different -SED = $(shell which gsed || which sed) +SED = $(shell which gsed 2>/dev/null || which sed) DEPS_DIR = $(shell pwd)/src/deps CPUS ?= $(shell nproc) |