Files
crypto/gpu/consolidated_cgo.go
T

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