aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Ciro Spaciari <ciro.spaciari@gmail.com> 2023-09-19 21:20:50 -0300
committerGravatar GitHub <noreply@github.com> 2023-09-19 17:20:50 -0700
commitf8d7f50cdbee67e938205afbb71b3e13cfddeba3 (patch)
tree69ff3c65212211d26f45253604ba9d279a609425
parentddb1189b2d67fcec3d5821930e3c7b1f865a5c48 (diff)
downloadbun-f8d7f50cdbee67e938205afbb71b3e13cfddeba3.tar.gz
bun-f8d7f50cdbee67e938205afbb71b3e13cfddeba3.tar.zst
bun-f8d7f50cdbee67e938205afbb71b3e13cfddeba3.zip
some fix (#5762)
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f13568f38..3a71fbcee 100644
--- a/Makefile
+++ b/Makefile
@@ -550,7 +550,7 @@ tinycc:
cd $(TINYCC_DIR) && \
make clean && \
AR=$(AR) $(CCACHE_CC_FLAG) CFLAGS='$(CFLAGS_WITHOUT_MARCH) $(NATIVE_OR_OLD_MARCH) -mtune=native $(TINYCC_CFLAGS)' ./configure --enable-static --cc=$(CCACHE_CC_OR_CC) --ar=$(AR) --config-predefs=yes && \
- make -j10 && \
+ make libtcc.a -j10 && \
cp $(TINYCC_DIR)/*.a $(BUN_DEPS_OUT_DIR)
PYTHON=$(shell which python 2>/dev/null || which python3 2>/dev/null || which python2 2>/dev/null)