From 272020ba2b49bf0f3cf364c79838748113109864 Mon Sep 17 00:00:00 2001 From: Johnshall <71166067+Johnshall@users.noreply.github.com> Date: Sat, 18 Dec 2021 00:58:36 +0800 Subject: [PATCH] Update a way to build Xray Add a way to build Xray on Windows with no command line interface. --- docs/development/intro/compile.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/development/intro/compile.md b/docs/development/intro/compile.md index 720528c..a2bf3d9 100644 --- a/docs/development/intro/compile.md +++ b/docs/development/intro/compile.md @@ -38,6 +38,13 @@ $env:CGO_ENABLED=0 go build -o xray.exe -trimpath -ldflags "-s -w -buildid=" ./main ``` +你也可以通过这个命令生成一个没有界面的 wxray.exe : + +```powershell +$env:CGO_ENABLED=0 +go build -o wxray.exe -trimpath -ldflags "-s -w -H windowsgui -buildid=" ./main +``` + ### macOS, Linux: ```bash