Skip to content

Commit

Permalink
Merge pull request #1 from xushiwei/q
Browse files Browse the repository at this point in the history
mod: github.com/goplus/llvm
  • Loading branch information
xushiwei authored Apr 14, 2024
2 parents c2c5435 + 29a457a commit b15efdf
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run:
go test -v
test-linux:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
strategy:
matrix:
llvm: [14, 15, 16, 17]
Expand Down
2 changes: 1 addition & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ to use LLVM 14.

If you have a supported LLVM installation, you should be able to do a simple `go get`:

go get tinygo.org/x/go-llvm
go get github.com/goplus/llvm

You can use build tags to select a LLVM version. For example, use `-tags=llvm15` to select LLVM 15. Setting a build tag for a LLVM version that is not supported will be ignored.

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module tinygo.org/x/go-llvm
module github.com/goplus/llvm

go 1.14
6 changes: 4 additions & 2 deletions llvm_test.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
package llvm_test

import "tinygo.org/x/go-llvm"
import (
"testing"

import "testing"
"github.com/goplus/llvm"
)

// Dummy test function.
// All it does is test whether we can use LLVM at all.
Expand Down

0 comments on commit b15efdf

Please sign in to comment.