Skip to content

Commit 943cfc3

Browse files
committed
fix(nodejs)
closes #5978
1 parent c3f3130 commit 943cfc3

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

projects/nodejs.org/package.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,20 @@ build:
2626
# otherwise, we hit https://reviews.llvm.org/D131307
2727
linux:
2828
llvm.org: '<16'
29-
gnu.org/make: '*'
3029
python.org: ~3.9
31-
freedesktop.org/pkg-config: ^0.29
3230
script:
3331
- run: python configure.py $ARGS
3432
if: <14
3533
- run: ./configure $ARGS
3634
if: '>=14'
35+
# v22 didn't include iomanip for std::precision in one file
36+
- run: |
37+
sed -i '/wasm-disassembler.h/a\
38+
\
39+
#include <iomanip>' wasm-disassembler.cc
40+
working-directory: deps/v8/src/wasm
41+
if: ^22
42+
3743
- make --jobs {{ hw.concurrency }} install
3844
env:
3945
ARGS:

0 commit comments

Comments
 (0)