
This commit adds support for LLVM 16 and switches to it by default. That means three LLVM versions are supported at the same time: LLVM 14, 15, and 16. This commit includes work by QuLogic: * Part of this work was based on a PR by QuLogic: https://github.com/tinygo-org/tinygo/pull/3649 But I also had parts of this already implemented in an old branch I already made for LLVM 16. * QuLogic also provided a CGo fix here, which is also incorporated in this commit: https://github.com/tinygo-org/tinygo/pull/3869 The difference with the original PR by QuLogic is that this commit is more complete: * It switches to LLVM 16 by default. * It updates some things to also make it work with a self-built LLVM. * It fixes the CGo bug in a slightly different way, and also fixes another one not included in the original PR. * It does not keep compiler tests passing on older LLVM versions. I have found this to be quite burdensome and therefore don't generally do this - the smoke tests should hopefully catch most regressions.
33 строки
1,2 КиБ
Modula-2
33 строки
1,2 КиБ
Modula-2
module github.com/tinygo-org/tinygo
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
github.com/aykevl/go-wasm v0.0.2-0.20220616010729-4a0a888aebdc
|
|
github.com/blakesmith/ar v0.0.0-20150311145944-8bd4349a67f2
|
|
github.com/chromedp/cdproto v0.0.0-20220113222801-0725d94bb6ee
|
|
github.com/chromedp/chromedp v0.7.6
|
|
github.com/gofrs/flock v0.8.1
|
|
github.com/google/shlex v0.0.0-20181106134648-c34317bd91bf
|
|
github.com/inhies/go-bytesize v0.0.0-20220417184213-4913239db9cf
|
|
github.com/marcinbor85/gohex v0.0.0-20200531091804-343a4b548892
|
|
github.com/mattn/go-colorable v0.1.8
|
|
github.com/mattn/go-tty v0.0.4
|
|
github.com/sigurn/crc16 v0.0.0-20211026045750-20ab5afb07e3
|
|
go.bug.st/serial v1.6.0
|
|
golang.org/x/sys v0.11.0
|
|
golang.org/x/tools v0.12.0
|
|
gopkg.in/yaml.v2 v2.4.0
|
|
tinygo.org/x/go-llvm v0.0.0-20230522123337-073e98d0d581
|
|
)
|
|
|
|
require (
|
|
github.com/chromedp/sysutil v1.0.0 // indirect
|
|
github.com/creack/goselect v0.1.2 // indirect
|
|
github.com/gobwas/httphead v0.1.0 // indirect
|
|
github.com/gobwas/pool v0.2.1 // indirect
|
|
github.com/gobwas/ws v1.1.0 // indirect
|
|
github.com/josharian/intern v1.0.0 // indirect
|
|
github.com/mailru/easyjson v0.7.7 // indirect
|
|
github.com/mattn/go-isatty v0.0.12 // indirect
|
|
)
|