You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
305 B
17 lines
305 B
@echo off
|
|
title HASH_FOR_LINUX
|
|
|
|
color 27
|
|
set GOOS=linux
|
|
set GOARCH=amd64
|
|
set CGO_ENABLED=0
|
|
rem set CC=x86_64-w64-mingw32-gcc
|
|
|
|
rem set CC=x86_64-linux-musl-gcc
|
|
rem set CGO_LDFLAGS="-static"
|
|
rem set GOARM=7
|
|
|
|
rem set CC=x86_64-w64-mingw32-gcc
|
|
rem set CXX=x86_64-w64-mingw32-g++
|
|
|
|
go build -o fshash main.go
|