Windows平台下編譯GO語言

來源:互聯網
上載者:User

Google官方還沒有放出Windows平台下的Go語言編譯環境,不過對於想體驗下Go語言的朋友可以嘗試下愛好者寫的

移植版本

下載:

go-1.zip 

 

 

環境設定:

set GOROOT=<the go folder><br />set GOOS=mingw<br />set GOARCH=386 

例如我安裝在如下目錄

F:/tool/go-1/go/

 

則設定如下:

 

C:/>set GOROOT=F:/tool/go-1/go/

 

C:/>set GOOS=mingw

 

C:/>set GOARCH=386

 

C:/>set GOBIN=F:/tool/go-1/go/bin

 

 

編譯例子程式

 

在記事本輸入一個程式並儲存為hello.go

 

package main 
import "fmt"

func main() {  
    fmt.Printf("Hello, world!/n"); 

}

 

 

然後在hello.go 檔案所在目錄下輸入

 

8g hello.go

則編譯輸出hello.8檔案

 

然後串連檔案產生可執行檔

8l -o hello.exe hello.8

 

串連輸出hello.exe

 

執行hello.exe 輸出如下:

Hello, world!

 

全部過程如下:

 

F:/GO>8g hello.go

 

F:/GO>8l -o hello hello.8

 

 

 

F:/GO>hello.exe

Hello, world!

 

 

 

 

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.