|
5 | 5 |
|
6 | 6 |
|
7 | 7 | def make_debug_mingw(target, source, env): |
8 | | - objcopy = get_mingw_tool("objcopy", env["mingw_prefix"], env["arch"]) |
9 | | - strip = get_mingw_tool("strip", env["mingw_prefix"], env["arch"]) |
| 8 | + dst = str(target[0]) |
| 9 | + # Force separate debug symbols if executable size is larger than 1.9 GB. |
| 10 | + if env["separate_debug_symbols"] or os.stat(dst).st_size >= 2040109465: |
| 11 | + objcopy = get_mingw_tool("objcopy", env["mingw_prefix"], env["arch"]) |
| 12 | + strip = get_mingw_tool("strip", env["mingw_prefix"], env["arch"]) |
10 | 13 |
|
11 | | - if not objcopy or not strip: |
12 | | - print('`separate_debug_symbols` requires both "objcopy" and "strip" to function.') |
13 | | - return |
| 14 | + if not objcopy or not strip: |
| 15 | + print('`separate_debug_symbols` requires both "objcopy" and "strip" to function.') |
| 16 | + return |
14 | 17 |
|
15 | | - os.system("{0} --only-keep-debug {1} {1}.debugsymbols".format(objcopy, target[0])) |
16 | | - os.system("{0} --strip-debug --strip-unneeded {1}".format(strip, target[0])) |
17 | | - os.system("{0} --add-gnu-debuglink={1}.debugsymbols {1}".format(objcopy, target[0])) |
| 18 | + os.system("{0} --only-keep-debug {1} {1}.debugsymbols".format(objcopy, dst)) |
| 19 | + os.system("{0} --strip-debug --strip-unneeded {1}".format(strip, dst)) |
| 20 | + os.system("{0} --add-gnu-debuglink={1}.debugsymbols {1}".format(objcopy, dst)) |
0 commit comments