fix targets

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2019-11-10 11:17:47 +01:00
parent a06801eeb5
commit 24ef34eda1
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020

View File

@ -1,11 +1,11 @@
c-amd64:
gcc main.go -o tcp-ping-amd64
gcc main.c -o tcp-ping-amd64
c-arm:
arm-linux-gnueabi-gcc -static main.c -o tcp-ping-arm64
c-arm64:
aarch64-linux-gnu-gcc -static main.c -o tcp-ping-arm64
aarch64-linux-gnu-gcc -static -Werror main.c -o tcp-ping-arm64
go-amd64:
GOARCH=amd64 go build -o tcp-ping-amd64 main.go