diff options
author | Elliott Sales de Andrade <[email protected]> | 2020-08-23 02:53:13 -0400 |
---|---|---|
committer | Ayke van Laethem <[email protected]> | 2020-08-24 12:04:47 +0200 |
commit | 32c7f3baf9f47d793a3a57af92e94479703cf0ec (patch) | |
tree | 3fb9b2f9a1df9ef581afb023ec14393c5718f9b2 /targets | |
parent | 1dc85ded470d26a17a295560212babdff3c202d4 (diff) | |
download | tinygo-32c7f3baf9f47d793a3a57af92e94479703cf0ec.tar.gz tinygo-32c7f3baf9f47d793a3a57af92e94479703cf0ec.zip |
Remove --no-threads from wasm-ld calls.
The bugs linked from the original addition of this flag are fixed:
https://bugs.llvm.org/show_bug.cgi?id=41508
or 'possibly fixed':
https://bugs.llvm.org/show_bug.cgi?id=37064#c8
since LLVM 8.0.1. TinyGo only support LLVM 9+, and as noted in the
original PR (#377), this can be removed when switching to 9.
Additionally, this flag was dropped from LLVM 11.
Diffstat (limited to 'targets')
-rw-r--r-- | targets/wasm.json | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/targets/wasm.json b/targets/wasm.json index 447acf8c1..df4d5ee3a 100644 --- a/targets/wasm.json +++ b/targets/wasm.json @@ -12,7 +12,6 @@ ], "ldflags": [ "--allow-undefined", - "--no-threads", "--stack-first", "--export-all", "--no-demangle", |