Skip to content

Commit 2617008

Browse files
authored
Merge pull request #14 from antihax/fix
Fix broken build with v750 and cleanup some code
2 parents 6fcb5cd + 394c40e commit 2617008

File tree

4 files changed

+242
-214
lines changed

4 files changed

+242
-214
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@
2828
# sapnwrfc.ini example
2929
gorfc/sapnwrfc.ini
3030

31+
# VSCode
32+
.vscode
33+
3134
# Packages
3235
GoRFC/pkg/
3336

build.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)