前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >mac下brew使用国内源安装go15brew 安装go15

mac下brew使用国内源安装go15brew 安装go15

作者头像
solate
发布2020-12-28 14:13:49
2K0
发布2020-12-28 14:13:49
举报
文章被收录于专栏:solate 杂货铺

brew 安装go15

今天使用brew安装go1.15时,碰到问题

然后查找博客找到一个解决方案,其实还是墙的问题,记录一下

解决

  1. 执行下面命令修改安装脚本
代码语言:javascript
复制
brew edit go
  1. 修改脚本中相应部分为以下内容
代码语言:javascript
复制
  stable do
    url "https://studygolang.com/dl/golang/go1.15.6.src.tar.gz"

...
  resource "gotools" do
      url "https://github.com/golang/tools.git",

...
  livecheck do
    url "https://studygolang.com/dl"

...
  head do
    url "https://github.com/golang/go.git"

    resource "gotools" do
      url "https://github.com/golang/tools.git"
...

  resource "gobootstrap" do
    on_macos do
      url "https://studygolang.com/dl/golang/go1.7.darwin-amd64.tar.gz"
  1. 在脚本中增加go的国内代理, 只有ENV这个, 这局在install 内,不要加错地方,第一次我就加错了。
代码语言:javascript
复制
    ENV["GOPROXY"] = "https://goproxy.cn"  # 此行是为了新增代理的环境变量

    system bin/"go", "install", "-race", "std"
  1. 执行安装命令
代码语言:javascript
复制
brew install go

因为brew 已经不支持 high sierra 所以执行

代码语言:javascript
复制
brew install --build-from-source go

原脚本内容

代码语言:javascript
复制
class Go < Formula
  desc "Open source programming language to build simple/reliable/efficient software"
  homepage "https://golang.org"
  license "BSD-3-Clause"

  stable do
    url "https://golang.org/dl/go1.15.6.src.tar.gz"
    mirror "https://fossies.org/linux/misc/go1.15.6.src.tar.gz"
    sha256 "890bba73c5e2b19ffb1180e385ea225059eb008eb91b694875dd86ea48675817"

    go_version = version.major_minor
    resource "gotools" do
      url "https://go.googlesource.com/tools.git",
          branch: "release-branch.go#{go_version}"
    end
  end

  livecheck do
    url "https://golang.org/dl/"
    regex(/href=.*?go[._-]?v?(\d+(?:\.\d+)+)[._-]src\.t/i)
  end

  bottle do
    sha256 "2107796e255869aae4a2b1bd5766182f38c87544f968750d78b7ba520d907b1a" => :big_sur
    sha256 "9dac57ef268c5fee434ac7896fc77f16f16f34462822e216c9973ade6a768e0b" => :catalina
    sha256 "af0b8702944cde293206a5847bea8fb5aed66babed82fb202aff696ac5211691" => :mojave
  end

  head do
    url "https://go.googlesource.com/go.git"

    resource "gotools" do
      url "https://go.googlesource.com/tools.git"
    end
  end

  # Don't update this unless this version cannot bootstrap the new version.
  resource "gobootstrap" do
    on_macos do
      url "https://storage.googleapis.com/golang/go1.7.darwin-amd64.tar.gz"
      sha256 "51d905e0b43b3d0ed41aaf23e19001ab4bc3f96c3ca134b48f7892485fc52961"

    on_linux do
      url "https://storage.googleapis.com/golang/go1.7.linux-amd64.tar.gz"
      sha256 "702ad90f705365227e902b42d91dd1a40e48ca7f67a2f4b2fd052aaa4295cd95"
    end
  end

  def install
    (buildpath/"gobootstrap").install resource("gobootstrap")
    ENV["GOROOT_BOOTSTRAP"] = buildpath/"gobootstrap"

    cd "src" do
      ENV["GOROOT_FINAL"] = libexec
      system "./make.bash", "--no-clean"
    end

    (buildpath/"pkg/obj").rmtree
    rm_rf "gobootstrap" # Bootstrap not required beyond compile.
    libexec.install Dir["*"]
    bin.install_symlink Dir[libexec/"bin/go*"]

    system bin/"go", "install", "-race", "std"

    # Build and install godoc
    ENV.prepend_path "PATH", bin
    ENV["GOPATH"] = buildpath
    (buildpath/"src/golang.org/x/tools").install resource("gotools")
    cd "src/golang.org/x/tools/cmd/godoc/" do
      system "go", "build"
      (libexec/"bin").install "godoc"
    end
    bin.install_symlink libexec/"bin/godoc"
  end

  test do
    (testpath/"hello.go").write <<~EOS
      package main

      import "fmt"

      func main() {
          fmt.Println("Hello World")
      }
    EOS
    # Run go fmt check for no errors then run the program.
    # This is a a bare minimum of go working as it uses fmt, build, and run.
    system bin/"go", "fmt", "hello.go"
    assert_equal "Hello World\n", shell_output("#{bin}/go run hello.go")

    # godoc was installed
    assert_predicate libexec/"bin/godoc", :exist?
    assert_predicate libexec/"bin/godoc", :executable?

    ENV["GOOS"] = "freebsd"
    ENV["GOARCH"] = "amd64"
    system bin/"go", "build", "hello.go"
  end
end

参考

mac环境下brew使用国内源安装go15

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • brew 安装go15
    • 解决
      • 原脚本内容
        • 参考
        领券
        问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档