Skip to content

Commit 0e0f797

Browse files
committed
fix mimalloc crash on i686
1 parent a55fefe commit 0e0f797

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

module/checksum.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636

3737
'linux-6.18.3.tar.xz': '7a8879167b89c4bae077d6f39c4f2130769f05dbdad2aad914adab9afb7d7f9a',
3838

39+
'mimalloc-2.2.4.tar.gz': '754a98de5e2912fddbeaf24830f982b4540992f1bab4a0a8796ee118e0752bda',
3940
'mimalloc-3.0.11.tar.gz': 'c2cadf7f0ff007f63be3b6cf99855abfc5aaff7f34bdd408b405d5f7b63f8561',
4041

4142
'mpc-1.3.1.tar.gz': 'ab642492f5cf882b74aa0cb730cd410a81edcdbec895183ce930e706c1c759b8',

module/profile.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
from typing import Optional
33

44
class BranchVersions:
5+
mimalloc: str
56
musl: str
67
qt: str
78

@@ -19,7 +20,6 @@ class BranchVersions:
1920
harfbuzz: str = '12.3.0'
2021
linux: str = '6.18.3'
2122
meson: str = '1.10.0'
22-
mimalloc: str = '3.0.11'
2323
mpc: str = '1.3.1'
2424
mpfr: str = '4.2.2'
2525
pkgconf: str = '2.5.1'
@@ -46,9 +46,11 @@ class BranchVersions:
4646
def __init__(
4747
self,
4848

49+
mimalloc: str,
4950
musl: str,
5051
qt: str,
5152
):
53+
self.mimalloc = mimalloc
5254
self.musl = musl
5355
self.qt = qt
5456

@@ -90,10 +92,13 @@ def __init__(
9092

9193
BRANCHES = {
9294
'main': BranchVersions(
95+
mimalloc = '3.0.11',
9396
musl = '1.2.5',
9497
qt = '6.10.1',
9598
),
9699
'time32': BranchVersions(
100+
# mimalloc 3.0 fails to meta allocate tld on i686 (exceeds size limit)
101+
mimalloc = '2.2.4',
97102
musl = '1.1.24',
98103
qt = '6.8.3',
99104
),

0 commit comments

Comments
 (0)