diff options
author | Khem Raj <raj.khem@gmail.com> | 2021-06-15 22:48:07 -0700 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2021-07-18 08:47:57 -0700 |
commit | a6ec992b3f2fa9a9762962eb18087193b8293e4c (patch) | |
tree | 757bbfc613275bd7b524acd17563b67c47a4f2cd | |
parent | 9aad47d679f0453fe354409afa5f19ac4179958d (diff) | |
download | meta-openembedded-a6ec992b3f2fa9a9762962eb18087193b8293e4c.tar.gz |
mariadb: Fix build with clang/musl
Signed-off-by: Khem Raj <raj.khem@gmail.com>
(cherry picked from commit abbca30bd61c0ff856785900aac899ab33ead08b)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | meta-oe/recipes-dbs/mysql/mariadb.inc | 1 | ||||
-rw-r--r-- | meta-oe/recipes-dbs/mysql/mariadb/mm_malloc.patch | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/meta-oe/recipes-dbs/mysql/mariadb.inc b/meta-oe/recipes-dbs/mysql/mariadb.inc index 25e630a16a..18b025070b 100644 --- a/meta-oe/recipes-dbs/mysql/mariadb.inc +++ b/meta-oe/recipes-dbs/mysql/mariadb.inc | |||
@@ -23,6 +23,7 @@ SRC_URI = "https://downloads.mariadb.org/interstitial/${BP}/source/${BP}.tar.gz | |||
23 | file://sys_futex.patch \ | 23 | file://sys_futex.patch \ |
24 | file://cross-compiling.patch \ | 24 | file://cross-compiling.patch \ |
25 | file://ssize_t.patch \ | 25 | file://ssize_t.patch \ |
26 | file://mm_malloc.patch \ | ||
26 | " | 27 | " |
27 | SRC_URI_append_libc-musl = " file://ppc-remove-glibc-dep.patch" | 28 | SRC_URI_append_libc-musl = " file://ppc-remove-glibc-dep.patch" |
28 | 29 | ||
diff --git a/meta-oe/recipes-dbs/mysql/mariadb/mm_malloc.patch b/meta-oe/recipes-dbs/mysql/mariadb/mm_malloc.patch new file mode 100644 index 0000000000..347fcd8516 --- /dev/null +++ b/meta-oe/recipes-dbs/mysql/mariadb/mm_malloc.patch | |||
@@ -0,0 +1,11 @@ | |||
1 | --- a/storage/rocksdb/rocksdb/port/jemalloc_helper.h | ||
2 | +++ b/storage/rocksdb/rocksdb/port/jemalloc_helper.h | ||
3 | @@ -5,7 +5,7 @@ | ||
4 | |||
5 | #pragma once | ||
6 | |||
7 | -#if defined(__clang__) | ||
8 | +#if defined(__clang__) && defined(__GLIBC__) | ||
9 | // glibc's `posix_memalign()` declaration specifies `throw()` while clang's | ||
10 | // declaration does not. There is a hack in clang to make its re-declaration | ||
11 | // compatible with glibc's if they are declared consecutively. That hack breaks | ||