Xmister / libsmb2-go

Go bindings for libsmb2 SMBv2&3 C library
Apache License 2.0
11 stars 5 forks source link

How does this reference C's library #1

Open lirui-dot opened 2 years ago

Xmister commented 2 years ago

You can use environment variables for linking and including, e.g.:

Simple:

export CGO_LDFLAGS="-lsmb2"

Cross-compiling for android:

export CGO_LDFLAGS="-L/opt/android-sdk-linux/ndk-bundle/sysroot/lib -lsmb2" \
export CGO_CFLAGS="-D__ANDROID_API__=21 -I/opt/android-sdk-linux/ndk-bundle/sysroot/include -I/opt/android-sdk-linux/ndk-bundle/sysroot/include/smb2" \