Fix local build scripts

This commit is contained in:
Ashcon Partovi
2024-06-25 19:10:17 -07:00
parent e8523f7246
commit aaec8ecc68
3 changed files with 3 additions and 3 deletions

View File

@@ -1105,7 +1105,7 @@ steps:
- key: "bun-windows-x64-build-bun"
label: ":windows: x64 - build-bun"
depends_on:
- "bun-windows-x64-build-no-lto"
- "bun-windows-x64-build-bun-no-lto"
agents:
queue: "build-windows"
os: "windows"

View File

@@ -614,7 +614,7 @@ set(BUN_DEPS_DIR "${BUN_SRC}/deps")
set(BUN_CODEGEN_SRC "${BUN_SRC}/codegen")
if(NOT BUN_DEPS_OUT_DIR)
set(BUN_DEPS_OUT_DIR "${BUN_DEPS_DIR}")
set(BUN_DEPS_OUT_DIR "${CMAKE_CURRENT_SOURCE_DIR}/build/bun-deps")
endif()
set(BUN_RAW_SOURCES, "")

View File

@@ -129,7 +129,7 @@ SED = $(shell which gsed 2>/dev/null || which sed 2>/dev/null)
BUN_DIR ?= $(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))
BUN_DEPS_DIR ?= $(shell pwd)/src/deps
BUN_DEPS_OUT_DIR ?= $(BUN_DEPS_DIR)
BUN_DEPS_OUT_DIR ?= $(shell pwd)/build/bun-deps
CPU_COUNT = 2
ifeq ($(OS_NAME),darwin)
CPU_COUNT = $(shell sysctl -n hw.logicalcpu)