diff options
author | Ayke van Laethem <[email protected]> | 2022-10-28 20:38:35 +0200 |
---|---|---|
committer | Ron Evans <[email protected]> | 2022-10-31 12:19:24 +0100 |
commit | 580fd490a5c4a674c877ba2ecf8a66196b7e4049 (patch) | |
tree | aa998845cd40570eda7512f0469b570605abc6ae /go.mod | |
parent | c0d505d13aad7cdbf0cf96edba44765173488ef8 (diff) | |
download | tinygo-580fd490a5c4a674c877ba2ecf8a66196b7e4049.tar.gz tinygo-580fd490a5c4a674c877ba2ecf8a66196b7e4049.zip |
all: remove libffi warning on macos
Running `go install` on MacOS produces the following warning:
# github.com/tinygo-org/tinygo
ld: warning: directory not found for option '-L/opt/homebrew/opt/libffi/lib'
It doesn't look like libffi is used anywhere, so I simply removed it.
Not sure why it was included in the first place.
(I updated the Makefile for consistency, but we really should be
removing that Makefile especially because the Go bindings are removed in
upstream LLVM).
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -17,7 +17,7 @@ require ( golang.org/x/sys v0.0.0-20220829200755-d48e67d00261 golang.org/x/tools v0.1.11 gopkg.in/yaml.v2 v2.4.0 - tinygo.org/x/go-llvm v0.0.0-20220922115213-dcb078a26266 + tinygo.org/x/go-llvm v0.0.0-20221028183034-8341240c0b32 ) require ( @@ -29,5 +29,4 @@ require ( 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 - golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect ) |