blob: 53dce2c57595bac1977e8373a8001b75c53968f3 [file] [log] [blame]
// 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
}