Lines Matching refs:compiler
2 # The LLVM Compiler Infrastructure
6 """ This module is responsible for to parse a compiler invocation. """
14 # Ignored compiler options map for compilation database creation.
36 # compilation commands only. so, the compiler would ignore these flags
51 # Known C/C++ compiler executable name patterns
67 compiler: string value of 'c' or 'c++' """
71 ['compiler', 'flags', 'files'])
72 result.compiler = compiler_language(command)
75 # quit right now, if the program was not a C/C++ compiler
76 if not result.compiler:
131 """ A predicate to decide the command is a compiler call or not.