Skip to content

Commit cf72556

Browse files
Jemalloc : Fix build with Xcode 15
This Jemalloc version is too old to know about Xcode 15's allocator
1 parent 66a847b commit cf72556

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

Jemalloc/config.py

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,33 @@
1212

1313
"commands" : [
1414

15-
"./configure --prefix={buildDir}",
15+
"./configure --prefix={buildDir} {extraArguments}",
1616
"make -j {jobs}",
1717
"make install"
1818

1919
],
2020

21+
"variables" : {
22+
23+
"extraArguments" : "",
24+
25+
},
26+
2127
"manifest" : [
2228

2329
"include/jemalloc",
2430
"lib/libjemalloc*{sharedLibraryExtension}*",
2531

2632
],
33+
34+
"platform:macos" : {
35+
36+
"variables" : {
37+
38+
"extraArguments" : "--enable-zone-allocator=no",
39+
40+
},
41+
42+
},
43+
2744
}

0 commit comments

Comments
 (0)