This commit is contained in:
Kovid Goyal 2024-01-21 13:56:21 +05:30
parent 4fec11af05
commit cb5a2cce53
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C

View file

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