github.com/bir3/gocompiler@v0.3.205/src/go/build/gc.go (about) 1 // Copyright 2018 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 //go:build gc 6 7 package build 8 9 import ( 10 "path/filepath" 11 "runtime" 12 "github.com/bir3/gocompiler/vfs" 13 ) 14 15 // getToolDir returns the default value of ToolDir. 16 func getToolDir() string { 17 return filepath.Join(vfs.GOROOT, "pkg/tool/"+runtime.GOOS+"_"+runtime.GOARCH) 18 }