2024-03-12 02:05:37 +08:00
|
|
|
"""Functions used to generate source files during build time"""
|
2024-02-28 21:25:35 +08:00
|
|
|
|
2018-03-18 06:23:55 +08:00
|
|
|
import os
|
2024-05-21 21:14:59 +08:00
|
|
|
|
2018-03-18 06:23:55 +08:00
|
|
|
|
|
|
|
def make_debug_mingw(target, source, env):
|
2024-05-08 16:09:50 +08: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:
|
2024-10-12 03:24:00 +08:00
|
|
|
os.system("{0} --only-keep-debug {1} {1}.debugsymbols".format(env["OBJCOPY"], dst))
|
|
|
|
os.system("{0} --strip-debug --strip-unneeded {1}".format(env["STRIP"], dst))
|
|
|
|
os.system("{0} --add-gnu-debuglink={1}.debugsymbols {1}".format(env["OBJCOPY"], dst))
|