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
|
|
|
|
|
|
|
|
|
2022-07-20 06:28:22 +00:00
|
|
|
def make_debug_macos(target, source, env):
|
2024-03-11 18:05:37 +00:00
|
|
|
dst = str(target[0])
|
2020-03-30 06:28:32 +00:00
|
|
|
if env["macports_clang"] != "no":
|
2018-03-17 22:23:55 +00:00
|
|
|
mpprefix = os.environ.get("MACPORTS_PREFIX", "/opt/local")
|
|
|
|
mpclangver = env["macports_clang"]
|
2024-03-11 18:05:37 +00:00
|
|
|
os.system(mpprefix + "/libexec/llvm-" + mpclangver + "/bin/llvm-dsymutil {0} -o {0}.dSYM".format(dst))
|
2018-03-17 22:23:55 +00:00
|
|
|
else:
|
2024-03-11 18:05:37 +00:00
|
|
|
os.system("dsymutil {0} -o {0}.dSYM".format(dst))
|
|
|
|
os.system("strip -u -r {0}".format(dst))
|