Lines Matching defs:compiler
22 """Returns the compiler in effect the test suite is running with."""
23 compiler = configuration.compiler if configuration.compiler else "clang"
24 compiler = lldbutil.which(compiler)
25 return os.path.abspath(compiler)
102 def getToolchainSpec(self, compiler):
107 cc = compiler if compiler else None
108 if not cc and configuration.compiler:
109 cc = configuration.compiler
121 # We can get CC compiler string in the following formats:
122 # [<tool>] <compiler> - such as 'xrun clang', 'xrun /usr/bin/clang' & etc
124 # Where <compiler> could contain the following parts:
127 # <path>/<simple-name>[.<exe-ext>] - such as '/usr/bin/clang', 'c:\path\to\compiler\clang,exe'
128 # <path>/<target-triple>-<simple-name>[.<exe-ext>] - such as '/usr/bin/clang', 'c:\path\to\compiler\clang,exe'
134 # A kind of compiler (canonical name): clang, gcc, cc & etc.
136 # A triple prefix of compiler name: <armv7-none-linux-gnu->gcc
144 # A kind of C++ compiler.
262 compiler=None,
279 self.getToolchainSpec(compiler),