mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-03 10:37:46 +00:00
072ef603fe
This was an oversight in commit 107fccb288.
18 lines
328 B
JSON
18 lines
328 B
JSON
{
|
|
"llvm-target": "wasm32-unknown-unknown-wasm",
|
|
"build-tags": ["js", "wasm"],
|
|
"goos": "js",
|
|
"goarch": "wasm",
|
|
"compiler": "clang-7",
|
|
"linker": "ld.lld-7",
|
|
"cflags": [
|
|
"--target=wasm32",
|
|
"-Oz"
|
|
],
|
|
"ldflags": [
|
|
"-flavor", "wasm",
|
|
"-allow-undefined"
|
|
],
|
|
"emulator": ["cwa"]
|
|
}
|