
This LLVM version breaks CI and is now relatively rather old anyway, so
remove support for it.
This also reverts a workaround for LLVM 9, see a9568932b
("maixbit:
workaround to avoid medium code model").
14 строки
394 Б
Go
14 строки
394 Б
Go
// +build !byollvm
|
|
// +build !llvm10
|
|
|
|
package cgo
|
|
|
|
/*
|
|
#cgo linux CFLAGS: -I/usr/lib/llvm-11/include
|
|
#cgo darwin CFLAGS: -I/usr/local/opt/llvm@11/include
|
|
#cgo freebsd CFLAGS: -I/usr/local/llvm11/include
|
|
#cgo linux LDFLAGS: -L/usr/lib/llvm-11/lib -lclang
|
|
#cgo darwin LDFLAGS: -L/usr/local/opt/llvm@11/lib -lclang -lffi
|
|
#cgo freebsd LDFLAGS: -L/usr/local/llvm11/lib -lclang
|
|
*/
|
|
import "C"
|