mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-03 02:27:48 +00:00
20 lines
392 B
JSON
20 lines
392 B
JSON
{
|
|
"llvm-target": "wasm32-unknown-unknown-wasm",
|
|
"build-tags": ["js", "wasm"],
|
|
"goos": "js",
|
|
"goarch": "wasm",
|
|
"compiler": "clang",
|
|
"linker": "wasm-ld",
|
|
"cflags": [
|
|
"--target=wasm32",
|
|
"-nostdlibinc",
|
|
"-Wno-macro-redefined",
|
|
"-Oz"
|
|
],
|
|
"ldflags": [
|
|
"--allow-undefined",
|
|
"--export-all"
|
|
],
|
|
"emulator": ["node", "targets/wasm_exec.js"]
|
|
}
|