mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-02-06 15:05:19 +00:00
11 lines
314 B
Bash
11 lines
314 B
Bash
![]() |
#! /bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
URL=https://github.com/espressif/qemu/releases/download/esp-develop-9.0.0-20240606/qemu-xtensa-softmmu-esp_develop_9.0.0_20240606-x86_64-linux-gnu.tar.xz
|
||
|
|
||
|
DIR=$(mktemp -d)
|
||
|
cd ${DIR}
|
||
|
curl -fLsS "${URL}" | xzcat | tar -x
|
||
|
ln -s ${DIR}/qemu/bin/qemu-system-xtensa /usr/local/bin/qemu-system-xtensa
|