(self, arch)
| 816 | generated_libraries = [] |
| 817 | |
| 818 | def should_build(self, arch): |
| 819 | lib_dir = self.get_lib_dir(arch) |
| 820 | |
| 821 | for lib in self.generated_libraries: |
| 822 | if not exists(join(lib_dir, lib)): |
| 823 | return True |
| 824 | |
| 825 | return False |
| 826 | |
| 827 | def get_lib_dir(self, arch): |
| 828 | return join(self.get_build_dir(arch.arch), 'obj', 'local', arch.arch) |
nothing calls this directly
no test coverage detected