This commit is contained in:
Kovid Goyal 2026-06-24 08:09:17 +05:30
parent c6e823b3de
commit d369da2e04
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C

View file

@ -134,10 +134,10 @@ def install_deps() -> None:
def build_kitty() -> None:
python = shutil.which('python3') if is_bundle else sys.executable
cmd = f'{python} setup.py build --verbose'
if is_macos:
cmd += ' --debug' # for better crash report to debug SIGILL issue
if os.environ.get('KITTY_SANITIZE') == '1':
cmd += ' --debug --sanitize'
elif is_macos:
cmd += ' --debug' # for better crash report to debug SIGILL issue
run(cmd)