2019-05-24 18:36:36 +03:00
|
|
|
// Copyright © 2013, 2014, The Go-LXC Authors. All rights reserved.
|
|
|
|
|
// Use of this source code is governed by a LGPLv2.1
|
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
2023-06-20 21:20:07 -04:00
|
|
|
//go:build linux && cgo && static_build
|
2019-05-24 18:36:36 +03:00
|
|
|
// +build linux,cgo,static_build
|
|
|
|
|
|
|
|
|
|
package lxc
|
|
|
|
|
|
2019-10-21 21:27:02 +02:00
|
|
|
// #cgo CFLAGS: -std=gnu11 -Wvla -Werror
|
2021-01-07 11:16:39 -08:00
|
|
|
// #cgo pkg-config: --static lxc libcrypto
|
2019-06-25 16:06:23 +03:00
|
|
|
// #cgo LDFLAGS: -static
|
2019-05-24 18:36:36 +03:00
|
|
|
import "C"
|