我在Makefile下面编写了用于不同平台的Golang代码。 (我的操作系统是Windows 10,并通过命令提示符运行Makefile)
GOCMD = go
GOBUILD = $(GOCMD) build
GOFILES = $(wildcard *.go)
SONG_PATH = ./song-service
SONG_PATH_OUTPOUT = ./song-service/cmd
SONG_BINARY_NAME_LIN = songservice_lin
song-build-lin:
set GOOS=linux
set GOARCH=amd64
$(GOBUILD) -o "$(SONG_PATH_OUTPOUT)/$(SONG_BINARY_NAME_LIN)" -v "$(SONG_PATH)/$(GOFILES)"
当我运行make song-build-lin
时,它运行没有错误,但未设置GOOS变量。
但是当我直接在命令提示符下运行set GOOS=linux
时,它就可以工作了!
答案 0 :(得分:1)
我终于找到答案了,
我使用VSCode终端运行make命令,我使用的终端类型是命令提示符。如果将终端类型更改为Git bash,命令将正常工作。
答案 1 :(得分:1)
这是一个很好的问题,也是一个很好的话题。
我被迫将 Windows 用于工作目的进行开发。我有一些使用 Windows 的队友,一些使用 Mac,还有一些更喜欢在 Linux 上工作但无法使用的人,我们只有一些需要编译可执行文件的 Linux 服务器。我最近访问了 Makefile 教程网站 https://makefiletutorial.com/,其中有一个关于导出变量的部分。
在我的 Windows 机器上,我能够使用 shell,cygwin。
下面是我能够使用的 make 文件中的编译...
# compile - cross compile all platforms
compile:
@echo " === Compiling for every OS and Platform === "
make compile-linux
make compile-win
make compile-mac
@echo " === COMPLETED! === "
# compile-linux - compile and create a linux executable for 64bit architecture
# NOTE: this sets the GOOS and GOARCH just for this makefile rule
compile-linux: export GOOS=linux
compile-linux: export GOARCH=amd64
compile-linux:
go build -o bin/executable-linux.exe
# compile-win - compile and create a windows executable for 64bit architecture
compile-win: export GOOS=windows
compile-win: export GOARCH=amd64
compile-win:
go build -o bin/executable-win.exe
# compile-mac - compile and create a mac os executable for 64bit architecture
compile-mac: export GOOS=darwin
compile-mac: export GOARCH=amd64
compile-mac:
go build -o bin/executable-mac
这似乎对我有用,使用 Powershell 7 和/或 Windows 命令行,以及我使用 MacOS 的队友。
这是通用的,几乎可以添加到任何地方使用。
对于这个解决方案(虽然它已经被回答了 2 年以上)可能是这样的......
GOCMD = go
GOBUILD = $(GOCMD) build
GOFILES = $(wildcard *.go)
SONG_PATH = ./song-service
SONG_PATH_OUTPOUT = ./song-service/cmd
SONG_BINARY_NAME_LIN = songservice_lin
song-build-lin: export GOOS=linux
song-build-lin: export GOARCH=amd64
song-build-lin:
$(GOBUILD) -o "$(SONG_PATH_OUTPOUT)/$(SONG_BINARY_NAME_LIN)" -v "$(SONG_PATH)/$(GOFILES)"
我很想知道这是否适用于您和其他人,以及是否有任何其他改进。我不是一个巨大的 Makefile 人,我很想在这方面学习和改进。