Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.markdown
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Go bindings to system LLVM

[![Build Status](https://github.com/goplus/llvm/actions/workflows/go.yml/badge.svg)](https://github.com/goplus/llvm/actions/workflows/go.yml)
[![Go Report Card](https://goreportcard.com/badge/github.com/goplus/llvm)](https://goreportcard.com/report/github.com/goplus/llvm)
[![GoDoc](https://pkg.go.dev/badge/github.com/goplus/llvm.svg)](https://pkg.go.dev/github.com/goplus/llvm)
[![Build Status](https://github.com/xgo-dev/llvm/actions/workflows/go.yml/badge.svg)](https://github.com/xgo-dev/llvm/actions/workflows/go.yml)
[![Go Report Card](https://goreportcard.com/badge/github.com/xgo-dev/llvm)](https://goreportcard.com/report/github.com/xgo-dev/llvm)
[![GoDoc](https://pkg.go.dev/badge/github.com/xgo-dev/llvm.svg)](https://pkg.go.dev/github.com/xgo-dev/llvm)
<!--
[![GitHub release](https://img.shields.io/github/v/tag/goplus/llvm.svg?label=release)](https://github.com/goplus/llvm/releases)
[![GitHub release](https://img.shields.io/github/v/tag/goplus/llvm.svg?label=release)](https://github.com/xgo-dev/llvm/releases)
[![Coverage Status](https://codecov.io/gh/goplus/llvm/branch/main/graph/badge.svg)](https://codecov.io/gh/goplus/llvm)
-->

Expand All @@ -23,7 +23,7 @@ to use LLVM 17.

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

go get github.com/goplus/llvm
go get github.com/xgo-dev/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 github.com/goplus/llvm
module github.com/xgo-dev/llvm

go 1.14
2 changes: 1 addition & 1 deletion llvm_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package llvm_test
import (
"testing"

"github.com/goplus/llvm"
"github.com/xgo-dev/llvm"
)

// Dummy test function.
Expand Down
Loading