Full path of the clang++ compiler depending on the android's ndk version used.
(self)
| 86 | |
| 87 | @property |
| 88 | def clang_exe_cxx(self): |
| 89 | """Full path of the clang++ compiler depending on the android's ndk |
| 90 | version used.""" |
| 91 | return self.get_clang_exe(plus_plus=True) |
| 92 | |
| 93 | def get_clang_exe(self, with_target=False, plus_plus=False): |
| 94 | """Returns the full path of the clang/clang++ compiler, supports two |
nothing calls this directly
no test coverage detected