platform_windows_builders.py 570 B

12345678910111213
  1. """Functions used to generate source files during build time"""
  2. import os
  3. def make_debug_mingw(target, source, env):
  4. dst = str(target[0])
  5. # Force separate debug symbols if executable size is larger than 1.9 GB.
  6. if env["separate_debug_symbols"] or os.stat(dst).st_size >= 2040109465:
  7. os.system("{0} --only-keep-debug {1} {1}.debugsymbols".format(env["OBJCOPY"], dst))
  8. os.system("{0} --strip-debug --strip-unneeded {1}".format(env["STRIP"], dst))
  9. os.system("{0} --add-gnu-debuglink={1}.debugsymbols {1}".format(env["OBJCOPY"], dst))