Skip to content

Instantly share code, notes, and snippets.

@kaznak
Last active April 5, 2020 07:23
Show Gist options
  • Save kaznak/7b0561b1354428495a4e3773e470307e to your computer and use it in GitHub Desktop.
Save kaznak/7b0561b1354428495a4e3773e470307e to your computer and use it in GitHub Desktop.
2020-04-05.webassembly

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 .

でた。簡単。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment