https://github.com/sentriz/taglib-string-wasm-repro
reproduction of a issue with TagLib::String compiled to 32 bit WASM
https://github.com/sentriz/taglib-string-wasm-repro
Last synced: 10 months ago
JSON representation
reproduction of a issue with TagLib::String compiled to 32 bit WASM
- Host: GitHub
- URL: https://github.com/sentriz/taglib-string-wasm-repro
- Owner: sentriz
- Created: 2024-11-25T18:27:09.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-11-25T18:42:27.000Z (over 1 year ago)
- Last Synced: 2024-11-25T19:33:25.213Z (over 1 year ago)
- Language: C++
- Size: 766 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
# build wasm
docker run -it -v $PWD:/pwd -w /pwd ghcr.io/webassembly/wasi-sdk /opt/wasi-sdk/bin/clang++ -target wasm32-wasi --sysroot /opt/wasi-sdk/share/wasi-sysroot main.cpp -Wl,--allow-undefined -o main.wasm
# run
docker run -it -v $PWD:/pwd -w /pwd golang:1.23.3 sh -c "go get . && go run main.go"