mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-12-14 22:35:25 +01:00
24 lines
917 B
Diff
24 lines
917 B
Diff
From 76e4c3e8d001eaaabd0fb34c136b81b82830c420 Mon Sep 17 00:00:00 2001
|
|
From: Khem Raj <raj.khem@gmail.com>
|
|
Date: Tue, 15 Jun 2021 22:48:07 -0700
|
|
Subject: [PATCH] mariadb: Fix build with clang/musl
|
|
|
|
Upstream-Status: Pending
|
|
---
|
|
storage/rocksdb/rocksdb/port/jemalloc_helper.h | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/storage/rocksdb/rocksdb/port/jemalloc_helper.h b/storage/rocksdb/rocksdb/port/jemalloc_helper.h
|
|
index f6f72f8c..b9657cf3 100644
|
|
--- a/storage/rocksdb/rocksdb/port/jemalloc_helper.h
|
|
+++ b/storage/rocksdb/rocksdb/port/jemalloc_helper.h
|
|
@@ -5,7 +5,7 @@
|
|
|
|
#pragma once
|
|
|
|
-#if defined(__clang__)
|
|
+#if defined(__clang__) && defined(__GLIBC__)
|
|
// glibc's `posix_memalign()` declaration specifies `throw()` while clang's
|
|
// declaration does not. There is a hack in clang to make its re-declaration
|
|
// compatible with glibc's if they are declared consecutively. That hack breaks
|