mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-04 02:57:46 +00:00
cgo: fix default LLVM version to LLVM 14
Without extra flags, we would try to use LLVM 13 for cgo and LLVM 14 for
other things since 873412b43a. That isn't
great. So fix this by only using LLVM 14 in the cgo package.
This commit is contained in:
committed by
Ron Evans
parent
1766746c60
commit
b347aea450
@@ -1,5 +1,5 @@
|
||||
//go:build !byollvm && !llvm14
|
||||
// +build !byollvm,!llvm14
|
||||
//go:build !byollvm && llvm13
|
||||
// +build !byollvm,llvm13
|
||||
|
||||
package cgo
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
//go:build !byollvm && llvm14
|
||||
// +build !byollvm,llvm14
|
||||
//go:build !byollvm && !llvm13
|
||||
// +build !byollvm,!llvm13
|
||||
|
||||
package cgo
|
||||
|
||||
|
||||
Reference in New Issue
Block a user