diff options
| author | emmett1 <emmett1.2miligrams@protonmail.com> | 2025-01-13 03:27:30 +0000 |
|---|---|---|
| committer | emmett1 <emmett1.2miligrams@protonmail.com> | 2025-01-13 03:27:30 +0000 |
| commit | 643ed743976674b7466ed95302d22d2f1e18a55c (patch) | |
| tree | eb85ffa19186876d4edb617b473c633a99563dbf /repos/extra/mimalloc | |
| parent | 8feee9ade9f3886c4d1f97113404840ca2002497 (diff) | |
| parent | 7c335cd27e0a2c8abb954a19fc3e0aa3fab07ac8 (diff) | |
| download | alicelinux-643ed743976674b7466ed95302d22d2f1e18a55c.tar.gz alicelinux-643ed743976674b7466ed95302d22d2f1e18a55c.zip | |
Merge pull request 'fix: mimalloc recipe' (#17) from xplshn/alicelinux:main into main
Reviewed-on: https://codeberg.org/emmett1/alicelinux/pulls/17
Diffstat (limited to 'repos/extra/mimalloc')
| -rw-r--r--[-rwxr-xr-x] | repos/extra/mimalloc/.checksum | 2 | ||||
| -rw-r--r--[-rwxr-xr-x] | repos/extra/mimalloc/.files | 29 | ||||
| -rwxr-xr-x | repos/extra/mimalloc/abuild | 4 |
3 files changed, 19 insertions, 16 deletions
diff --git a/repos/extra/mimalloc/.checksum b/repos/extra/mimalloc/.checksum index d7c00a86..023ca999 100755..100644 --- a/repos/extra/mimalloc/.checksum +++ b/repos/extra/mimalloc/.checksum @@ -1 +1 @@ -e842fdab4fd8ff032c46e6f2386d6ab4daae35946a2e35f05be251fbda9306b8 mimalloc-v3.0.1.tar.gz +fde85d777b185a12918f47caee83bc09a9e0583fcab0ee319eabc2c8b1b30073 mimalloc-v2.1.9.tar.gz diff --git a/repos/extra/mimalloc/.files b/repos/extra/mimalloc/.files index dc0bef3a..950077f4 100755..100644 --- a/repos/extra/mimalloc/.files +++ b/repos/extra/mimalloc/.files @@ -1,20 +1,21 @@ drwxr-xr-x root/root usr/ drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/mimalloc-3.0/ --rw-r--r-- root/root usr/include/mimalloc-3.0/mimalloc-new-delete.h --rw-r--r-- root/root usr/include/mimalloc-3.0/mimalloc-override.h --rw-r--r-- root/root usr/include/mimalloc-3.0/mimalloc.h +drwxr-xr-x root/root usr/include/mimalloc-2.1/ +-rw-r--r-- root/root usr/include/mimalloc-2.1/mimalloc-new-delete.h +-rw-r--r-- root/root usr/include/mimalloc-2.1/mimalloc-override.h +-rw-r--r-- root/root usr/include/mimalloc-2.1/mimalloc.h drwxr-xr-x root/root usr/lib/ drwxr-xr-x root/root usr/lib/cmake/ -drwxr-xr-x root/root usr/lib/cmake/mimalloc-3.0/ --rw-r--r-- root/root usr/lib/cmake/mimalloc-3.0/mimalloc-config-version.cmake --rw-r--r-- root/root usr/lib/cmake/mimalloc-3.0/mimalloc-config.cmake --rw-r--r-- root/root usr/lib/cmake/mimalloc-3.0/mimalloc-release.cmake --rw-r--r-- root/root usr/lib/cmake/mimalloc-3.0/mimalloc.cmake -lrwxrwxrwx root/root usr/lib/libmimalloc.so -> libmimalloc.so.3 -lrwxrwxrwx root/root usr/lib/libmimalloc.so.3 -> libmimalloc.so.3.0 --rwxr-xr-x root/root usr/lib/libmimalloc.so.3.0 -drwxr-xr-x root/root usr/lib/mimalloc-3.0/ --rw-r--r-- root/root usr/lib/mimalloc-3.0/mimalloc.o +drwxr-xr-x root/root usr/lib/cmake/mimalloc-2.1/ +-rw-r--r-- root/root usr/lib/cmake/mimalloc-2.1/mimalloc-config-version.cmake +-rw-r--r-- root/root usr/lib/cmake/mimalloc-2.1/mimalloc-config.cmake +-rw-r--r-- root/root usr/lib/cmake/mimalloc-2.1/mimalloc-release.cmake +-rw-r--r-- root/root usr/lib/cmake/mimalloc-2.1/mimalloc.cmake +lrwxrwxrwx root/root usr/lib/libmimalloc.so -> libmimalloc.so.2 +lrwxrwxrwx root/root usr/lib/libmimalloc.so.2 -> libmimalloc.so.2.1 +-rwxr-xr-x root/root usr/lib/libmimalloc.so.2.1 +drwxr-xr-x root/root usr/lib/mimalloc-2.1/ +-rw-r--r-- root/root usr/lib/mimalloc-2.1/libmimalloc.a +-rw-r--r-- root/root usr/lib/mimalloc-2.1/mimalloc.o drwxr-xr-x root/root usr/lib/pkgconfig/ -rw-r--r-- root/root usr/lib/pkgconfig/mimalloc.pc diff --git a/repos/extra/mimalloc/abuild b/repos/extra/mimalloc/abuild index 482a3b94..923a2228 100755 --- a/repos/extra/mimalloc/abuild +++ b/repos/extra/mimalloc/abuild @@ -1,4 +1,6 @@ name=mimalloc -version=3.0.1 +version=2.1.9 release=1 source="https://github.com/microsoft/${name}/archive/v${version}/${name}-v${version}.tar.gz" +keep_static=1 +build_opt="-DMI_OVERRIDE=true -DMI_LIBC_MUSL=true -DMI_BUILD_STATIC=true -DMI_BUILD_OBJECT=true -DMI_BUILD_SHARED=true" |