Skip to content

Commit b6d6efd

Browse files
aykevldeadprogram
authored andcommitted
all: remove support for LLVM 13
1 parent 8b67282 commit b6d6efd

File tree

5 files changed

+8
-24
lines changed

5 files changed

+8
-24
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,12 +112,12 @@ commands:
112112
- /go/pkg/mod
113113

114114
jobs:
115-
test-llvm13-go116:
115+
test-llvm14-go116:
116116
docker:
117117
- image: golang:1.16-buster
118118
steps:
119119
- test-linux:
120-
llvm: "13"
120+
llvm: "14"
121121
test-llvm14-go119:
122122
docker:
123123
- image: golang:1.19beta1-buster
@@ -131,7 +131,7 @@ workflows:
131131
jobs:
132132
# This tests our lowest supported versions of Go and LLVM, to make sure at
133133
# least the smoke tests still pass.
134-
- test-llvm13-go116
134+
- test-llvm14-go116
135135
# This tests a beta version of Go. It should be removed once regular
136136
# release builds are built using this version.
137137
- test-llvm14-go119

cgo/libclang_config_llvm13.go

Lines changed: 0 additions & 16 deletions
This file was deleted.

cgo/libclang_config_llvm14.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
//go:build !byollvm && !llvm13
2-
// +build !byollvm,!llvm13
1+
//go:build !byollvm
2+
// +build !byollvm
33

44
package cgo
55

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ require (
1515
golang.org/x/sys v0.0.0-20220114195835-da31bd327af9
1616
golang.org/x/tools v0.1.11
1717
gopkg.in/yaml.v2 v2.4.0
18-
tinygo.org/x/go-llvm v0.0.0-20220626113704-45f1e2dbf887
18+
tinygo.org/x/go-llvm v0.0.0-20220802112859-5bb0b77907a7
1919
)

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,5 +79,5 @@ gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8
7979
gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
8080
gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY=
8181
gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ=
82-
tinygo.org/x/go-llvm v0.0.0-20220626113704-45f1e2dbf887 h1:k+Y1DU/WoBDkTkRJGF149yk3S2K2VhNglN435DXDS5s=
83-
tinygo.org/x/go-llvm v0.0.0-20220626113704-45f1e2dbf887/go.mod h1:GFbusT2VTA4I+l4j80b17KFK+6whv69Wtny5U+T8RR0=
82+
tinygo.org/x/go-llvm v0.0.0-20220802112859-5bb0b77907a7 h1:nSLR52mUw7DPQQVA3ZJFH63zjU4ME84fKiin6mdnYWc=
83+
tinygo.org/x/go-llvm v0.0.0-20220802112859-5bb0b77907a7/go.mod h1:GFbusT2VTA4I+l4j80b17KFK+6whv69Wtny5U+T8RR0=

0 commit comments

Comments
 (0)