(self, arch, env, build_dir=None)
| 1170 | self.strip_object_files(arch, env) |
| 1171 | |
| 1172 | def strip_object_files(self, arch, env, build_dir=None): |
| 1173 | if build_dir is None: |
| 1174 | build_dir = self.get_build_dir(arch.arch) |
| 1175 | with current_directory(build_dir): |
| 1176 | info('Stripping object files') |
| 1177 | shprint(sh.find, '.', '-iname', '*.so', '-exec', |
| 1178 | '/usr/bin/echo', '{}', ';', _env=env) |
| 1179 | shprint(sh.find, '.', '-iname', '*.so', '-exec', |
| 1180 | env['STRIP'].split(' ')[0], '--strip-unneeded', |
| 1181 | # '/usr/bin/strip', '--strip-unneeded', |
| 1182 | '{}', ';', _env=env) |
| 1183 | |
| 1184 | def cythonize_file(self, env, build_dir, filename): |
| 1185 | short_filename = filename |
no test coverage detected