diff options
author | davidovski <david@davidovski.xyz> | 2022-03-06 15:21:10 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-03-06 15:21:10 +0000 |
commit | 75e7bb9c72d562d397f9fb62072ab114cfbc6244 (patch) | |
tree | c2af33a2c487d2b411e3be0900f675c41ca5ab4f /repo/system/js78.xibuild | |
parent | ce1ac2b89b42e4e05ba706b7bbdcc39cd2e64e8b (diff) |
fixed python compilation for js78
Diffstat (limited to 'repo/system/js78.xibuild')
-rw-r--r-- | repo/system/js78.xibuild | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/repo/system/js78.xibuild b/repo/system/js78.xibuild index 39eb45c..26716d9 100644 --- a/repo/system/js78.xibuild +++ b/repo/system/js78.xibuild @@ -1,6 +1,6 @@ #!/bin/sh -MAKEDEPS="gcc autoconf2-13 icu rustc zlib which zip clang llvm patch make" +MAKEDEPS="gcc autoconf2-13 icu rustc zlib which zip clang llvm patch make python-six python-mach" DEPS="readline nspr bash zlib" PKG_VER=78.15.0 @@ -18,9 +18,6 @@ prepare () { apply_patches export LDFLAGS="$LDFLAGS -Wl,-z,stack-size=1048576" - - autoreconf -fi - mountpoint -q /dev/shm || mount -t tmpfs devshm /dev/shm export PATH=/opt/rustc/bin:$PATH export LD_LIBRARY_PATH=/opt/rustc/lib:$LD_LIBRARY_PATH @@ -28,12 +25,11 @@ prepare () { } build () { - mkdir build && - cd build && + mkdir build + cd build SHELL=/bin/bash PYTHON=/usr/bin/python3 \ ../js/src/configure --prefix=/usr \ - --with-clang-path=/usr/bin/clang \ --with-intl-api \ --with-libclang-path=/usr/lib \ --with-system-icu \ @@ -54,7 +50,13 @@ build () { make -j1 +} +check () { + dist/bin/jsapi-tests \ + --format=none \ + --exclude-random \ + basic } package () { |