From bd82d3d739a6595fd457ba19fc7b7e0e3c071341 Mon Sep 17 00:00:00 2001 From: xushiwei Date: Wed, 6 May 2026 11:58:38 +0800 Subject: [PATCH] github.com/goplus/llvm => github.com/xgo-dev/llvm --- README.markdown | 10 +++++----- go.mod | 2 +- llvm_test.go | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.markdown b/README.markdown index aff44e0..8e8d03f 100644 --- a/README.markdown +++ b/README.markdown @@ -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) @@ -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. diff --git a/go.mod b/go.mod index 19f86ac..3ab0856 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/goplus/llvm +module github.com/xgo-dev/llvm go 1.14 diff --git a/llvm_test.go b/llvm_test.go index ecd3c0a..ce4e614 100644 --- a/llvm_test.go +++ b/llvm_test.go @@ -3,7 +3,7 @@ package llvm_test import ( "testing" - "github.com/goplus/llvm" + "github.com/xgo-dev/llvm" ) // Dummy test function.