linux: Strip binaries wen creating distribution

This commit is contained in:
Cheng Zhao 2015-04-09 09:05:51 +08:00
parent 0bc5d6438e
commit b8e38ad14e

View file

@ -80,6 +80,7 @@ def main():
copy_license()
if TARGET_PLATFORM == 'linux':
strip_binaries()
copy_system_libraries()
create_version()
@ -130,6 +131,12 @@ def copy_license():
shutil.copy2(os.path.join(SOURCE_ROOT, 'LICENSE'), DIST_DIR)
def strip_binaries():
for binary in TARGET_BINARIES[TARGET_PLATFORM]:
if binary.endswith('.so') or '.' not in binary:
execute(['strip', os.path.join(DIST_DIR, binary)])
def copy_system_libraries():
ldd = execute(['ldd', os.path.join(OUT_DIR, 'atom')])
lib_re = re.compile('\t(.*) => (.+) \(.*\)$')