hermit icon indicating copy to clipboard operation
hermit copied to clipboard

feat: build hermit with fast-jit wamr

Open G4Vi opened this issue 2 years ago • 0 comments

fast interp:

gavin@teleporter:~/dev/hermit$ time ./interp-hermit.com -f src/ubuntu/Hermitfile -o interp-ubuntu.hermit.com
{
  "MAP": [
    "/"
  ],
  "ENV_PWD_IS_HOST_CWD": true,
  "FROM": "src/ubuntu/ubuntu.wasm"
}
Unable to make "interp-ubuntu.hermit.com" executable!
Due to platform limitations you must do it yourself! Run:
chmod +x "interp-ubuntu.hermit.com"

real    1m20.106s
user    1m19.929s
sys     0m0.173s

fast jit:

gavin@teleporter:~/dev/hermit$ time ./fastjit-hermit.com -f src/ubuntu/Hermitfile -o fastjit-ubuntu.hermit.com
{
  "MAP": [
    "/"
  ],
  "ENV_PWD_IS_HOST_CWD": true,
  "FROM": "src/ubuntu/ubuntu.wasm"
}
Unable to make "fastjit-ubuntu.hermit.com" executable!
Due to platform limitations you must do it yourself! Run:
chmod +x "fastjit-ubuntu.hermit.com"

real    0m15.116s
user    0m15.142s
sys     0m0.383s

G4Vi avatar Jan 24 '24 06:01 G4Vi