go bootstrap 源码

  • 2022-07-15
  • 浏览 (1034)

golang bootstrap 代码

文件路径:/src/cmd/compile/internal/gc/bootstrap.go

// Copyright 2017 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

//go:build !go1.8
// +build !go1.8

package gc

import (
	"cmd/compile/internal/base"
	"runtime"
)

func startMutexProfiling() {
	base.Fatalf("mutex profiling unavailable in version %v", runtime.Version())
}

相关信息

go 源码目录

相关文章

go compile 源码

go export 源码

go main 源码

go obj 源码

go pprof 源码

go trace 源码

go util 源码

0  赞