Skip to content

Commit

Permalink
Made some further build changes to experiment with WebAssembly support.
Browse files Browse the repository at this point in the history
  • Loading branch information
mdadams committed Nov 4, 2023
1 parent 7976385 commit a886dcd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ on:

jobs:
build:
runs-on: ubuntu-latest
#runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
############################################################
- name: Checkout
Expand Down
4 changes: 4 additions & 0 deletions build/build_wasi_jasper
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,10 @@ wasmtime="$wasmtime_dir/bin/wasmtime"
export WASI_SDK_ROOT_DIR="$wasi_sdk_dir"
export CC="$wasm_cc"
export CXX="$wasm_cxx"
export PATH="$wasi_sdk_dir/bin:$PATH"

lld="$(type -P lld)" || lld=
echo "lld program: $lld"

#source_dir="$tmp_dir/git"
build_dir="$tmp_dir/build"
Expand Down
1 change: 1 addition & 0 deletions build/github/prebuild
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ panic()
# Initialize the list of required packages.
packages=()
packages+=(doxygen)
#packages+=(lld)

# Install the packages.
sudo apt-get install -y "${packages[@]}" || \
Expand Down

0 comments on commit a886dcd

Please sign in to comment.