tinygo/compileopts
Ayke van Laethem 5f6cf665f5 compileopts: fix windows/arm target triple
This is just a papercut, and not really something important. But I
noticed something weird:

    $ GOOS=windows GOARCH=arm tinygo info ""
    LLVM triple:       armv7-unknown-windows-gnueabihf-gnu
    GOOS:              windows
    GOARCH:            arm

That -gnueabihf-gnu ending is weird, it should pick one of the two. I've
fixed it as follows:

    $ GOOS=windows GOARCH=arm tinygo info ""
    LLVM triple:       armv7-unknown-windows-gnu
    GOOS:              windows
    GOARCH:            arm
    [...]

We're probably never going to support windows/arm (this is 32-bit arm,
not arm64) so it doesn't really matter which one we pick. And this patch
shouldn't affect any other system.
2022-09-01 16:23:24 +02:00
..
config.go compileopts: use backticks for regexp to avoid extra escapes 2022-08-07 10:32:23 +02:00
options.go make interp timeout configurable from command line 2022-08-20 07:40:39 +02:00
options_test.go internal/task: remove coroutines 2022-01-19 14:42:02 -05:00
target.go compileopts: fix windows/arm target triple 2022-09-01 16:23:24 +02:00
target_test.go all: update _test.go files for os.IsFoo changes 2022-08-07 10:32:23 +02:00