| /llvm-project-15.0.7/libcxxabi/test/libcxxabi/test/ |
| H A D | config.py | 46 self.cxx.compile_flags += [ 50 self.cxx.compile_flags += ['-funwind-tables'] 52 self.cxx.compile_flags += ['-D_LIBCXXABI_HAS_NO_THREADS'] 62 self.cxx.compile_flags += ['-nostdinc++'] 72 self.cxx.compile_flags += ['-I' + cxx_target_headers] 73 self.cxx.compile_flags += ['-I' + cxx_headers] 74 self.cxx.compile_flags += ['-I' + os.path.join(self.libcxx_src_root, 'src')] 82 self.cxx.compile_flags += ['-I' + libcxxabi_headers] 89 self.cxx.compile_flags += ['-I' + libunwind_headers]
|
| /llvm-project-15.0.7/libcxx/utils/libcxx/test/ |
| H A D | config.py | 198 compile_flags = [] 201 compile_flags=compile_flags, 240 self.cxx.compile_flags += ['-DNOMINMAX'] 263 self.cxx.compile_flags += ['-D_DEBUG'] 267 self.cxx.compile_flags += ['-I' + support_path] 281 self.cxx.compile_flags += [ 287 self.cxx.compile_flags += [ 295 self.cxx.compile_flags += ['-nostdinc++'] 305 self.cxx.compile_flags += ['-I', cxx_headers] 432 self.cxx.compile_flags += ['-O0'] [all …]
|
| /llvm-project-15.0.7/libunwind/test/configs/ |
| H A D | llvm-libunwind-shared.cfg.in | 7 compile_flags = [] 11 compile_flags.append('-fcf-protection=full') 17 compile_flags.append('-funwind-tables') 23 config.substitutions.append(('%{compile_flags}', 24 '-nostdinc++ -I %{{include}} {}'.format(' '.join(compile_flags))
|
| H A D | llvm-libunwind-static.cfg.in | 7 compile_flags = [] 14 compile_flags.append('-fcf-protection=full') 20 compile_flags.append('-funwind-tables') 26 config.substitutions.append(('%{compile_flags}', 27 '-nostdinc++ -I %{{include}} {}'.format(' '.join(compile_flags))
|
| H A D | llvm-libunwind-merged.cfg.in | 8 compile_flags = [] 12 compile_flags.append('-fcf-protection=full') 18 compile_flags.append('-funwind-tables') 24 config.substitutions.append(('%{compile_flags}', 25 '-nostdinc++ -I %{{include}} {}'.format(' '.join(compile_flags))
|
| /llvm-project-15.0.7/libunwind/test/libunwind/test/ |
| H A D | config.py | 44 self.cxx.compile_flags += ['-funwind-tables'] 50 self.cxx.compile_flags += ['-D_LIBUNWIND_HAS_NO_THREADS'] 53 self.cxx.compile_flags += ['-fcf-protection=full'] 63 self.cxx.compile_flags += ['-I' + libunwind_headers]
|
| /llvm-project-15.0.7/compiler-rt/test/dfsan/ |
| H A D | lit.cfg.py | 17 def build_invocation(compile_flags): argument 18 return " " + " ".join([config.clang] + compile_flags) + " "
|
| /llvm-project-15.0.7/compiler-rt/test/ubsan_minimal/ |
| H A D | lit.common.cfg.py | 18 def build_invocation(compile_flags): argument 19 return " " + " ".join([config.clang] + compile_flags) + " "
|
| /llvm-project-15.0.7/compiler-rt/test/msan/ |
| H A D | lit.cfg.py | 31 def build_invocation(compile_flags): argument 32 return " " + " ".join([config.clang] + compile_flags) + " "
|
| /llvm-project-15.0.7/compiler-rt/test/gwp_asan/ |
| H A D | lit.cfg.py | 34 def build_invocation(compile_flags): argument 35 return " " + " ".join([config.clang] + compile_flags) + " "
|
| /llvm-project-15.0.7/compiler-rt/test/orc/ |
| H A D | lit.cfg.py | 11 def build_invocation(compile_flags): argument 12 return ' ' + ' '.join([config.clang] + compile_flags) + ' '
|
| /llvm-project-15.0.7/compiler-rt/test/scudo/ |
| H A D | lit.cfg.py | 36 def build_invocation(compile_flags): argument 37 return " " + " ".join([config.clang] + compile_flags) + " "
|
| /llvm-project-15.0.7/compiler-rt/test/hwasan/ |
| H A D | lit.cfg.py | 37 def build_invocation(compile_flags): argument 38 return " " + " ".join([config.clang] + compile_flags) + " "
|
| /llvm-project-15.0.7/compiler-rt/test/xray/ |
| H A D | lit.cfg.py | 24 def build_invocation(compile_flags): argument 25 return ' ' + ' '.join([config.clang] + compile_flags) + ' '
|
| /llvm-project-15.0.7/compiler-rt/test/ubsan/ |
| H A D | lit.common.cfg.py | 55 def build_invocation(compile_flags): argument 56 return " " + " ".join([config.clang] + compile_flags) + " "
|
| /llvm-project-15.0.7/compiler-rt/test/cfi/ |
| H A D | lit.cfg.py | 8 def build_invocation(compile_flags): argument 9 return " " + " ".join([config.clang] + compile_flags) + " "
|
| /llvm-project-15.0.7/compiler-rt/test/tsan/ |
| H A D | lit.cfg.py | 70 def build_invocation(compile_flags): argument 71 return " " + " ".join([config.clang] + compile_flags) + " "
|
| /llvm-project-15.0.7/libcxx/utils/libcxx/ |
| H A D | compiler.py | 20 def __init__(self, config, path, flags=None, compile_flags=None, link_flags=None, argument 30 self.compile_flags = list(compile_flags or []) 130 cmd += self.compile_flags 268 self.compile_flags += flags
|
| /llvm-project-15.0.7/compiler-rt/test/sanitizer_common/ |
| H A D | lit.common.cfg.py | 64 def build_invocation(compile_flags): argument 65 return " " + " ".join([config.clang] + compile_flags) + " "
|
| /llvm-project-15.0.7/compiler-rt/test/crt/ |
| H A D | lit.cfg.py | 57 def build_invocation(compile_flags): argument 58 return ' ' + ' '.join([config.clang] + compile_flags) + ' '
|
| /llvm-project-15.0.7/compiler-rt/test/memprof/ |
| H A D | lit.cfg.py | 65 def build_invocation(compile_flags): argument 66 return ' ' + ' '.join([config.clang] + compile_flags) + ' '
|
| /llvm-project-15.0.7/compiler-rt/test/lsan/ |
| H A D | lit.common.cfg.py | 68 def build_invocation(compile_flags): argument 69 return " " + " ".join([config.clang] + compile_flags) + " "
|
| /llvm-project-15.0.7/compiler-rt/cmake/Modules/ |
| H A D | CompilerRTCompile.cmake | 93 set(compile_flags ${global_flags} ${SOURCE_CFLAGS}) variable 95 set(compile_flags ${SOURCE_CFLAGS}) variable 100 list(APPEND compile_flags "-ObjC") 105 COMMAND ${COMPILER_RT_TEST_COMPILER} ${compile_flags} -c
|
| /llvm-project-15.0.7/lldb/third_party/Python/module/pexpect-4.6/pexpect/ |
| H A D | spawnbase.py | 222 compile_flags = re.DOTALL 224 compile_flags = compile_flags | re.IGNORECASE 229 compiled_pattern_list.append(re.compile(p, compile_flags))
|
| /llvm-project-15.0.7/compiler-rt/test/builtins/Unit/ |
| H A D | lit.cfg.py | 86 def build_invocation(compile_flags): argument 87 return " " + " ".join([clang_wrapper, config.clang] + compile_flags) + " "
|