2016-07-22 20:15:38 +02:00
|
|
|
// Copyright 2012 The Go Authors. All rights reserved.
|
2012-03-30 23:27:11 +02:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package runtime
|
|
|
|
|
|
|
|
// Compiler is the name of the compiler toolchain that built the
|
2016-07-22 20:15:38 +02:00
|
|
|
// running binary. Known toolchains are:
|
2012-03-30 23:27:11 +02:00
|
|
|
//
|
2015-10-31 01:59:47 +01:00
|
|
|
// gc Also known as cmd/compile.
|
2012-03-30 23:27:11 +02:00
|
|
|
// gccgo The gccgo front end, part of the GCC compiler suite.
|
|
|
|
//
|
|
|
|
const Compiler = "gccgo"
|