Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Mac/BuildScript/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ download them.
* SQLite
* XZ
* libffi
* mpdecimal

- uses system-supplied versions of third-party libraries

Expand Down Expand Up @@ -111,6 +112,7 @@ download them.
* SQLite
* XZ
* libffi
* mpdecimal

- uses system-supplied versions of third-party libraries

Expand Down
10 changes: 10 additions & 0 deletions Mac/BuildScript/build-installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -378,6 +378,15 @@ def library_recipes():
'--disable-dependency-tracking',
]
),
dict(
name="libmpdec 4.0.0",
url="https://www.bytereef.org/software/mpdecimal/releases/mpdecimal-4.0.0.tar.gz",
checksum="942445c3245b22730fd41a67a7c5c231d11cb1b9936b9c0f76334fb7d0b4468c",
configure_pre=[
"--disable-cxx",
"MACHINE=universal",
]
),
])

if not PYTHON_3:
Expand Down Expand Up @@ -1150,6 +1159,7 @@ def buildPython():
print(" NOTE: --with-mimalloc=no pending resolution of weak linking issues")
runCommand("%s -C --enable-framework --enable-universalsdk=/ "
"--with-mimalloc=no "
"--with-system-libmpdec "
"--with-universal-archs=%s "
"%s "
"%s "
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Update macOS installer to use libmpdecimal 4.0.0.