-
Notifications
You must be signed in to change notification settings - Fork 15
Open
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation
Description
Hi, thanks for the great work on Lind-WASM!
While following the Getting Started guide here:
https://lind-project.github.io/lind-wasm/getting-started/
I found that the Docker image referenced in the documentation is outdated and does not contain the binaries needed to run the tutorial commands:
lind-clang hello.c
lind-wasm hello.cwasm
These commands fail with “command not found”.
The Docker image from the Getting Started page does not include the required symlinks:
lind-clanglind-wasm
As of now, in the current repository (e.g. Docker/Dockerfile.e2e at commit 0bd58e1a03eb53f96a5b05c36a956f9523a8975a), the tools are installed via:
ENV LIND_WASM_ROOT=/
RUN install -D -m 0755 /scripts/lind_compile /usr/local/bin/lind_compile \
&& install -D -m 0755 /scripts/lind_run /usr/local/bin/lind_run \
&& ln -sf /usr/local/bin/lind_compile /usr/local/bin/lind-clang \
&& ln -sf /usr/local/bin/lind_run /usr/local/bin/lind-wasmThe official Docker image used in the Getting Started guide should match this setup.
Please update the Docker image referenced in the Getting Started page.
Thanks!
Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation