Codebase list golang-github-hillu-go-yara / upstream/4.1.0+git20211105.1.13342e1 cgo.go
upstream/4.1.0+git20211105.1.13342e1

Tree @upstream/4.1.0+git20211105.1.13342e1 (Download .tar.gz)

cgo.go @upstream/4.1.0+git20211105.1.13342e1raw · history · blame

// Copyright © 2015-2020 Hilko Bengen <bengen@hilluzination.de>
// All rights reserved.
//
// Use of this source code is governed by the license that can be
// found in the LICENSE file.

package yara

// #cgo !yara_no_pkg_config,!yara_static  pkg-config: yara
// #cgo !yara_no_pkg_config,yara_static   pkg-config: --static yara
// #cgo yara_no_pkg_config                LDFLAGS:    -lyara
/*
#include <yara.h>
#if YR_VERSION_HEX < 0x040100
#error YARA version 4.1 required
#endif
*/
import "C"