aboutsummaryrefslogtreecommitdiff
path: root/compiler_wrapper/gomacc_flag.go
blob: 53dce2c57595bac1977e8373a8001b75c53968f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2019 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

package main

import (
	"os"
)

func processGomaCccFlags(builder *commandBuilder) (gomaUsed bool) {
	if gomaPath := builder.env.getenv("GOMACC_PATH"); gomaPath != "" {
		if _, err := os.Lstat(gomaPath); err == nil {
			builder.wrapPath(gomaPath)
			return true
		}
	}
	return false
}