mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
4ed98532a2
https://github.com/kovidgoyal/kitty/releases/tag/v0.17.1 The png2icns patch is no longer needed because kitty will now automatically use `png2icns` when `iconutil` cannot be found. The zsh completions will now work without needing to invoke them with `source`, which means, that we can just install them like the other shell completions.
14 lines
468 B
Diff
14 lines
468 B
Diff
--- a/setup.py
|
|
+++ b/setup.py
|
|
@@ -277,10 +277,6 @@ def init_env(
|
|
cppflags += shlex.split(os.environ.get('CPPFLAGS', ''))
|
|
cflags += shlex.split(os.environ.get('CFLAGS', ''))
|
|
ldflags += shlex.split(os.environ.get('LDFLAGS', ''))
|
|
- if not debug and not sanitize:
|
|
- # See https://github.com/google/sanitizers/issues/647
|
|
- cflags.append('-flto')
|
|
- ldflags.append('-flto')
|
|
|
|
if profile:
|
|
cppflags.append('-DWITH_PROFILER')
|