GO语言打包编译连接bat文件(EditPlus用户工具)

pallas0328 2010-02-13
(可以设置EditPlus的用户工具,参数是$(FileNameNoExt),初始目录是$(FileDir))
#go-package.bat:.go文件生成.a文件
set GOROOT=c:\go
set GOOS=mingw
set GOARCH=386
set PATH=c:\go\bin
del %1.8
del %1.a
cls
8g %1.go
if %ERRORLEVEL% neq 0 goto end
gopack grc %1.a %1.8
:end

#go-compile.bat:.go文件生成8.exe
set GOROOT=c:\go
set GOOS=mingw
set GOARCH=386
set PATH=c:\go\bin
del %1.8
del 8.exe
cls
8g %1.go
if %ERRORLEVEL% neq 0 goto end
8l %1.8
:end
Global site tag (gtag.js) - Google Analytics