Home
last modified time | relevance | path

Searched refs:debug_suffix (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/libcxx/utils/libcxx/test/
Dconfig.py465 debug_suffix = 'd' if self.debug_build else ''
466 self.cxx.link_flags += ['-l%s%s' % (lib, debug_suffix) for lib in
470 debug_suffix = 'd' if self.debug_build else ''
471 self.cxx.link_flags += ['-lmsvcrt%s' % debug_suffix]
/external/libcxx/utils/libcxx/test/
Dconfig.py840 debug_suffix = 'd' if self.debug_build else ''
841 self.cxx.link_flags += ['-l%s%s' % (lib, debug_suffix) for lib in
845 debug_suffix = 'd' if self.debug_build else ''
846 self.cxx.link_flags += ['-lmsvcrt%s' % debug_suffix]
/external/google-breakpad/src/common/dwarf/
Ddwarf2reader.cc623 string debug_suffix(".debug"); in ProcessSplitDwarf() local
625 size_t found = path_.rfind(debug_suffix); in ProcessSplitDwarf()
626 if (found + debug_suffix.length() == path_.length()) in ProcessSplitDwarf()
627 dwp_path_ = dwp_path_.replace(found, debug_suffix.length(), dwp_suffix); in ProcessSplitDwarf()