6 if not 'go' in config.root.llvm_bindings:
7 config.unsupported = True
9 if not config.root.include_go_tests:
10 config.unsupported = True
12 def find_executable(executable, path=None):
14 path = os.environ['PATH']
15 paths = path.split(os.pathsep)
16 base, ext = os.path.splitext(executable)
18 if (sys.platform == 'win32' or os.name == 'os2') and (ext != '.exe'):
19 executable = executable + '.exe'
21 if not os.path.isfile(executable):
23 f = os.path.join(p, executable)
30 # Resolve certain symlinks in the first word of compiler.
32 # This is a Go-specific hack. cgo and other Go tools check $CC and $CXX for the
33 # substring 'clang' to determine if the compiler is Clang. This won't work if
34 # $CC is cc and cc is a symlink pointing to clang, as it is on Darwin.
36 # Go tools also have problems with ccache, so we disable it.
37 def fixup_compiler_path(compiler):
38 args = shlex.split(compiler)
39 if args[0].endswith('ccache') or args[0].endswith('gomacc'):
42 path = find_executable(args[0])
45 if path.endswith('/cc') and os.readlink(path) == 'clang':
46 args[0] = path[:len(path)-2] + 'clang'
47 except (AttributeError, OSError):
51 if path.endswith('/c++') and os.readlink(path) == 'clang++':
52 args[0] = path[:len(path)-3] + 'clang++'
53 except (AttributeError, OSError):
56 return ' '.join([pipes.quote(arg) for arg in args])
58 config.environment['CC'] = fixup_compiler_path(config.host_cc)
59 config.environment['CXX'] = fixup_compiler_path(config.host_cxx)
60 config.environment['CGO_LDFLAGS'] = config.host_ldflags