File tree Expand file tree Collapse file tree 2 files changed +25
-2
lines changed Expand file tree Collapse file tree 2 files changed +25
-2
lines changed Original file line number Diff line number Diff line change
1
+ From d6116f74260a53a94aa1a1438a76e67753f63fdc Mon Sep 17 00:00:00 2001
2
+ From: Kovid Goyal <kovid@kovidgoyal.net>
3
+ Date: Sun, 21 Jan 2024 08:33:59 +0530
4
+ Subject: [PATCH] Fix #7026
5
+
6
+ ---
7
+ setup.py | 3 +++
8
+ 1 file changed, 3 insertions(+)
9
+
10
+ diff --git a/setup.py b/setup.py
11
+ index 35e69d00df..e4d8bc8517 100755
12
+ --- a/setup.py
13
+ +++ b/setup.py
14
+ @@ -454,6 +454,9 @@ def init_env(
15
+ # Universal build fails with -fcf-protection clang is not smart enough to filter it out for the ARM part
16
+ intel_control_flow_protection = '-fcf-protection=full' if ccver >= (9, 0) and not build_universal_binary else ''
17
+ control_flow_protection = arm_control_flow_protection if is_arm else intel_control_flow_protection
18
+ + if control_flow_protection:
19
+ + if not test_compile(cc, control_flow_protection):
20
+ + control_flow_protection = ''
21
+ cflags_ = os.environ.get(
22
+ 'OVERRIDE_CFLAGS', (
23
+ f'-Wextra {float_conversion} -Wno-missing-field-initializers -Wall -Wstrict-prototypes {std}'
Original file line number Diff line number Diff line change 1
1
# Template file for 'kitty'
2
2
pkgname=kitty
3
- version=0.31 .0
3
+ version=0.32 .0
4
4
revision=1
5
5
build_helper="python3"
6
6
pycompile_dirs="usr/lib/kitty"
@@ -17,7 +17,7 @@ license="GPL-3.0-only"
17
17
homepage="https://sw.kovidgoyal.net/kitty/"
18
18
changelog="https://sw.kovidgoyal.net/kitty/changelog.html"
19
19
distfiles="https://github.com/kovidgoyal/kitty/releases/download/v${version}/kitty-${version}.tar.xz"
20
- checksum=d122497134abab8e25dfcb6b127af40cfe641980e007f696732f70ed298198f5
20
+ checksum=7881a95c1a43d03b230b6ff817e4b5cfec267bac3dbd6dcbbf6c095d476d776d
21
21
python_version=3
22
22
nopie_files="/usr/bin/kitten"
23
23
You can’t perform that action at this time.
0 commit comments