diff options
author | sago35 <[email protected]> | 2023-11-01 08:20:37 +0900 |
---|---|---|
committer | Ron Evans <[email protected]> | 2023-11-02 15:37:43 +0100 |
commit | a531ed614a58346f9790add14717a768ac95af9c (patch) | |
tree | fd1befc0a304199230f422c55a439b5101f66c94 /main.go | |
parent | 24ae6fdf293502f032ed8cec857515b356b32b4a (diff) | |
download | tinygo-a531ed614a58346f9790add14717a768ac95af9c.tar.gz tinygo-a531ed614a58346f9790add14717a768ac95af9c.zip |
main, compileopts: move GetTargetSpecs() to compileopts package
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1743,7 +1743,7 @@ func main() { handleCompilerError(err) } case "targets": - specs, err := GetTargetSpecs() + specs, err := compileopts.GetTargetSpecs() if err != nil { fmt.Fprintln(os.Stderr, "could not list targets:", err) os.Exit(1) |