Closed nyckmaia closed 2 years ago
@nyckmaia Thank you for your feedback.
3a- I tried to ran
CC=emcc CXX=em++ python3 setup.py bdist_whell
but I got this error:
bdist_wheel
is correct, not bdist_whell
.
Actually, I found our README is wrong. We will fix it.
wasm-ld: error: unknown argument: -Bsymbolic-functions
I've never encountered that option, but maybe we have to remove -Bsymbolic-functions
, too.
We will investigate it.
Thank you for your reporting.
We also provide docker image at ghcr.io/ymd-h/exodide:latest
.
While we are fixing the above issue, you can use it if possible.
@nyckmaia
We released exodide v1.0.3, which trims unsupported -Wl,-Bsymbolic-functions
, too.
We don't have appropriate environment (WSL) to test, however, I hope it will work.
If you try and still have any problems, please let us know.
Great! Thank you @ymd-h
I will try it latter, but any problems I will re-open this issue, ok?
Thank you again!
Hi, I'm trying to build the
exodide
example, but I got some compilation errors.My steps were:
1- I'm using
Ubuntu 20.04 LTS
onWindows WSL 2
2- I ran thesource ~/emsdk/emsdk_env.sh
to set the Emscripten environment variables 3a- I tried to ranCC=emcc CXX=em++ python3 setup.py bdist_whell
but I got this error:3b- If I change
python3
topython
it starts to compile, but I got another error:Obs.: Both
python
andpython3
are pointing topython3.10
, as you can see in the image below:Question
So, how can I fix it and compile the
exodide
example?My Setup