[tip]在ubuntu 9.10上裝google的go程式語言

[tip]在ubuntu 9.10上裝google的go程式語言

前言

很少玩windows以外的系統,所以紀錄一下…

 

測試環境

Windows 7 上裝 VirtualBox 3.1.0 使用 ubuntu9.10

 

步驟

  1. mkdir $HOME/go
  2. mkdir $HOME/bin
  3. 編輯.bashrc,加入下列四行
    export GOROOT=$HOME/go
    export GOARCH=386
    export GOOS=linux
    export GOBIN=$HOME/bin
  4. source .bashrc
  5. export PATH=$PATH:$GOBIN
  6. env | grep ‘^GO’
  7. sudo apt-get install mercurial
  8. sudo apt-get install bison gcc libc6-dev ed
  9. hg clone –r release https://go.googlecode.com/hg/ $GOROOT
  10. cd $GOROOT/src
  11. ./all.bash

然後編寫個HelloWorld.go

package main

import "fmt"

func main() {
fmt.Printf("hello, world\n")
}

編譯,執行後會產生HelloWorld.8

$ 8g HelloWorld.go

link,執行後會產生8.out

$ 8l HelloWorld.8

執行

$ ./8.out

 

參考網址 :

http://unixlab.blogspot.com/2009/11/installing-googles-go-language-on.html

http://plog.longwin.com.tw/my_note-unix/2009/12/07/ubuntu-linux-install-go-lang-2009