mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
13 lines
463 B
Go
13 lines
463 B
Go
// +build linux,cgo
|
|
|
|
package shared
|
|
|
|
// #cgo CFLAGS: -std=gnu11 -Wvla -Werror -fvisibility=hidden -Winit-self
|
|
// #cgo CFLAGS: -Wformat=2 -Wshadow -Wendif-labels -fasynchronous-unwind-tables
|
|
// #cgo CFLAGS: -pipe --param=ssp-buffer-size=4 -g -Wunused
|
|
// #cgo CFLAGS: -Werror=implicit-function-declaration
|
|
// #cgo CFLAGS: -Werror=return-type -Wendif-labels -Werror=overflow
|
|
// #cgo CFLAGS: -Wnested-externs -fexceptions
|
|
// #cgo LDFLAGS: -lutil -lpthread
|
|
import "C"
|