https://webassembly.org/getting-started/developers-guide/ やってみる。
brew search emsdk
したら、見つからないけど emscripten
じゃね?と brew に言われたので brew install emscripten
した。
~/.zshrc
# icu4c
export PATH="/usr/local/opt/icu4c/bin:$PATH"
export PATH="/usr/local/opt/icu4c/sbin:$PATH"
# export LDFLAGS="-L/usr/local/opt/icu4c/lib $LDFLAGS"
# export CPPFLAGS="-I/usr/local/opt/icu4c/include $CPPFLAGS"
# export PKG_CONFIG_PATH="/usr/local/opt/icu4c/lib/pkgconfig"
# [email protected]
export PATH="/usr/local/opt/[email protected]/bin:$PATH"
# export LDFLAGS="-L/usr/local/opt/[email protected]/lib $LDFLAGS"
# export CPPFLAGS="-I/usr/local/opt/[email protected]/include $CPPFLAGS"
# export PKG_CONFIG_PATH="/usr/local/opt/[email protected]/lib/pkgconfig"
~/.emscripten
LLVM_ROOT = "/usr/local/opt/emscripten/libexec/llvm/bin"
BINARYEN_ROOT = "/usr/local/opt/binaryen"
$ mkdir hello
$ cd hello
$ cat << EOF > hello.c
#include <stdio.h>
int main(int argc, char ** argv) {
printf("Hello, world!\n");
}
EOF
$ emcc hello.c -o hello.html
$ emrun --no_browser --port 8080 .
でた。簡単。