We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 997c558 commit f63d297Copy full SHA for f63d297
Utilities/build-release.py
@@ -47,7 +47,7 @@ def main():
47
# For ELF binaries, use strip to remove debug symbols because
48
# most of static archives in static linux Swift SDK contains
49
# debug sections.
50
- run(["strip", src_exe_path, "--strip-debug", "-o", dest_exe_path])
+ run(["llvm-strip", src_exe_path, "--strip-debug", "-o", dest_exe_path])
51
else:
52
shutil.copy(src_exe_path, dest_exe_path)
53
0 commit comments