We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6fcb5cd + 394c40e commit 2617008Copy full SHA for 2617008
.gitignore
@@ -28,6 +28,9 @@
28
# sapnwrfc.ini example
29
gorfc/sapnwrfc.ini
30
31
+# VSCode
32
+.vscode
33
+
34
# Packages
35
GoRFC/pkg/
36
build.sh
@@ -0,0 +1,5 @@
1
+#!/bin/bash
2
+go get -u ./...
3
+env GOOS=windows GOARCH=amd64 CGO_ENABLED=1 CC=x86_64-w64-mingw32-gcc go get -u ./...
4
+env GOOS=windows GOARCH=amd64 CGO_ENABLED=1 CC=x86_64-w64-mingw32-gcc go build ./...
5
+env GOOS=linux GOARCH=amd64 CGO_ENABLED=1 go build ./...
0 commit comments