2024-03-11 18:05:37 +00:00
|
|
|
"""Functions used to generate source files during build time"""
|
2024-02-28 13:25:35 +00:00
|
|
|
|
2018-03-17 22:23:55 +00:00
|
|
|
import os
|
2023-11-17 17:31:50 +00:00
|
|
|
from detect import get_mingw_tool
|
2018-03-17 22:23:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
def make_debug_mingw(target, source, env):
|
2024-05-08 08:09:50 +00:00
|
|
|
dst = str(target[0])
|
|
|
|
# Force separate debug symbols if executable size is larger than 1.9 GB.
|
|
|
|
if env["separate_debug_symbols"] or os.stat(dst).st_size >= 2040109465:
|
|
|
|
objcopy = get_mingw_tool("objcopy", env["mingw_prefix"], env["arch"])
|
|
|
|
strip = get_mingw_tool("strip", env["mingw_prefix"], env["arch"])
|
2023-11-17 17:31:50 +00:00
|
|
|
|
2024-05-08 08:09:50 +00:00
|
|
|
if not objcopy or not strip:
|
|
|
|
print('`separate_debug_symbols` requires both "objcopy" and "strip" to function.')
|
|
|
|
return
|
2023-11-17 17:31:50 +00:00
|
|
|
|
2024-05-08 08:09:50 +00:00
|
|
|
os.system("{0} --only-keep-debug {1} {1}.debugsymbols".format(objcopy, dst))
|
|
|
|
os.system("{0} --strip-debug --strip-unneeded {1}".format(strip, dst))
|
|
|
|
os.system("{0} --add-gnu-debuglink={1}.debugsymbols {1}".format(objcopy, dst))
|