diff options
-rw-r--r-- | llvm/test/Bindings/Go/lit.local.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/Bindings/Go/lit.local.cfg b/llvm/test/Bindings/Go/lit.local.cfg index a587f88f54a..3021fc64a75 100644 --- a/llvm/test/Bindings/Go/lit.local.cfg +++ b/llvm/test/Bindings/Go/lit.local.cfg @@ -36,7 +36,7 @@ def find_executable(executable, path=None): # Go tools also have problems with ccache, so we disable it. def fixup_compiler_path(compiler): args = shlex.split(compiler) - if args[0].endswith('ccache'): + if args[0].endswith('ccache') or args[0].endswith('gomacc'): args = args[1:] path = find_executable(args[0]) |