From 8df220a53b049871dca56c2ef45437e0ccd0ffd9 Mon Sep 17 00:00:00 2001 From: Ayke van Laethem Date: Thu, 7 Jun 2018 13:20:09 +0200 Subject: [PATCH] Move to my own fork of LLVM --- Makefile | 2 +- tgo.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 1120719c..507075dc 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ tgo: build/tgo .PHONY: all tgo run-hello run-blinky flash-blinky clean gen-device gen-device-nrf # Custom LLVM toolchain. -LLVM := $(shell go env GOPATH)/src/llvm.org/llvm/bindings/go/llvm/workdir/llvm_build/bin/ +LLVM := $(shell go env GOPATH)/src/github.com/aykevl/llvm/bindings/go/llvm/workdir/llvm_build/bin/ LINK = $(LLVM)llvm-link LLC = $(LLVM)llc LLAS = $(LLVM)llvm-as diff --git a/tgo.go b/tgo.go index 16a1be94..d72e4dcd 100644 --- a/tgo.go +++ b/tgo.go @@ -13,10 +13,10 @@ import ( "sort" "strings" + "github.com/aykevl/llvm/bindings/go/llvm" "golang.org/x/tools/go/loader" "golang.org/x/tools/go/ssa" "golang.org/x/tools/go/ssa/ssautil" - "llvm.org/llvm/bindings/go/llvm" ) func init() {