initial modifications, needs testing

This commit is contained in:
2023-07-09 15:22:26 -07:00
parent fbf6ce98b2
commit 31ffadf1b1
47 changed files with 1726 additions and 299 deletions

12
extension/makefile Normal file
View File

@@ -0,0 +1,12 @@
build:
export GOARCH="amd64"
export CGO_ENABLED=1
go build -o RangerMetrics_x64.so -buildmode=c-shared .
export GOARCH = "386"
export CGO_ENABLED = 1
go build -o RangerMetrics.dll -buildmode=c-shared .
export GOARCH = "amd64"
export CGO_ENABLED = 1
go build -o RangerMetrics_x64.dll -buildmode=c-shared .