P2FA/build.sh
2024-11-20 00:07:51 -05:00

9 lines
218 B
Bash

#!/usr/bin/env bash
cd go
go build -buildmode c-shared -ldflags="-w -s" -trimpath -v -o "go_p2fa.so"
rm -rf ../c/libs/go_p2fa.h
cp go_p2fa.h ../c/libs/go_p2fa.h
cd ../c
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:./libs
make -j1