Skip to content

Commit 927553e

Browse files
committed
fix cmake installed too late for host deps
1 parent cf81aee commit 927553e

File tree

2 files changed

+16
-7
lines changed

2 files changed

+16
-7
lines changed

config

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,11 @@ export GOROOT=$SDKROOT/go
120120

121121
EXTRABINS="$EXTRABINS $GOROOT/bin"
122122

123+
# ============== wasmer =================
124+
# curl https://get.wasmer.io -sSfL | sh
125+
126+
export WASMER_DIR==/opt/python-wasm-sdk/wasmer
127+
123128

124129
# ================ bun ====================
125130
export BUN_INSTALL=${SDKROOT}/bun

scripts/cpython-build-host-deps.sh

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,20 @@ echo "
77
" 1>&2
88

99

10+
11+
# probably lot of pip install made in cpython-build-emsdk-prebuilt.sh
12+
# should only go here in host python
13+
14+
# TODO
15+
16+
17+
1018
# install and update critical packages.
1119
$HPIP install --upgrade pip
1220

13-
1421
# 3.12 and git deprecated setuptools bundling.
1522
# NO MORE: setuptools is patched for bdist_wheel
16-
# $HPIP install --upgrade setuptools
23+
$HPIP install --upgrade setuptools
1724

18-
19-
# probably lot of pip install made in cpython-build-emsdk-prebuilt.sh
20-
# should only go here in host python
21-
22-
# TODO
25+
# install early to build some host tools like w2c2
26+
$HPIP install --upgrade cmake

0 commit comments

Comments
 (0)