aboutsummaryrefslogtreecommitdiff
path: root/compiler_wrapper/gomacc_flag.go
blob: ac298b1228e5d335d37e4e7fcaa729c89472722a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// 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, err error) {
	gomaPath := ""
	nextArgIsGomaPath := false
	builder.transformArgs(func(arg builderArg) string {
		if arg.fromUser {
			if arg.value == "--gomacc-path" {
				nextArgIsGomaPath = true
				return ""
			}
			if nextArgIsGomaPath {
				gomaPath = arg.value
				nextArgIsGomaPath = false
				return ""
			}
		}
		return arg.value
	})
	if nextArgIsGomaPath {
		return false, newUserErrorf("--gomacc-path given without value")
	}
	if gomaPath == "" {
		gomaPath, _ = builder.env.getenv("GOMACC_PATH")
	}
	if gomaPath != "" {
		if _, err := os.Lstat(gomaPath); err == nil {
			builder.wrapPath(gomaPath)
			return true, nil
		}
	}
	return false, nil
}