Source file src/cmd/go/internal/toolchain/exec_stub.go

     1  // Copyright 2023 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 js || wasip1
     6  
     7  package toolchain
     8  
     9  import "cmd/go/internal/base"
    10  
    11  func execGoToolchain(gotoolchain, dir, exe string) {
    12  	base.Fatalf("execGoToolchain unsupported")
    13  }
    14  

View as plain text