mirror of
https://github.com/luxfi/crypto.git
synced 2026-07-27 01:54:50 +00:00
15 lines
351 B
Go
15 lines
351 B
Go
//go:build cgo && gpu
|
|
// +build cgo,gpu
|
|
|
|
// Consolidated cgo wrapper to avoid duplicate linking
|
|
package gpu
|
|
|
|
/*
|
|
#cgo pkg-config: lux-all
|
|
#include <lux/crypto/crypto.h>
|
|
*/
|
|
import "C"
|
|
|
|
// This file consolidates all cgo dependencies to avoid duplicate library warnings
|
|
// Individual packages should import this instead of having their own cgo directives
|