You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
248 B
Go
15 lines
248 B
Go
2 years ago
|
//go:build external_libzstd
|
||
|
// +build external_libzstd
|
||
|
|
||
|
package zstd
|
||
|
|
||
|
// #cgo CFLAGS: -DUSE_EXTERNAL_ZSTD
|
||
|
// #cgo pkg-config: libzstd
|
||
|
/*
|
||
|
#include<zstd.h>
|
||
|
#if ZSTD_VERSION_NUMBER < 10400
|
||
|
#error "ZSTD version >= 1.4 is required"
|
||
|
#endif
|
||
|
*/
|
||
|
import "C"
|