Skip to content

Commit 4e4e202

Browse files
committed
Use zlib
1 parent e12fc36 commit 4e4e202

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SConstruct

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ def separate_debug_symbols(target, source, env):
289289
Exit(1)
290290
elif platform == "linux":
291291
debug_path = f"{target_path}.debug"
292-
err = run(f'objcopy --only-keep-debug --compress-debug-sections=zstd "{target_path}" "{debug_path}"')
292+
err = run(f'objcopy --only-keep-debug --compress-debug-sections=zlib "{target_path}" "{debug_path}"')
293293
if err != 0:
294294
print(f"ERROR: Failed to split debug symbols (exit code {err})")
295295
Exit(1)

0 commit comments

Comments
 (0)