diff options
Diffstat (limited to 'meta-oe/recipes-extended/fluentbit/fluentbit/0001-fluent-bit-shared-Link-with-lpthread.patch')
-rw-r--r-- | meta-oe/recipes-extended/fluentbit/fluentbit/0001-fluent-bit-shared-Link-with-lpthread.patch | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/meta-oe/recipes-extended/fluentbit/fluentbit/0001-fluent-bit-shared-Link-with-lpthread.patch b/meta-oe/recipes-extended/fluentbit/fluentbit/0001-fluent-bit-shared-Link-with-lpthread.patch deleted file mode 100644 index e9eed24b32..0000000000 --- a/meta-oe/recipes-extended/fluentbit/fluentbit/0001-fluent-bit-shared-Link-with-lpthread.patch +++ /dev/null | |||
@@ -1,35 +0,0 @@ | |||
1 | From 62fa9bceb15a9d160dd5d624a6d46907c1019c5c Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Fri, 8 Sep 2017 17:02:55 -0700 | ||
4 | Subject: [PATCH] fluent-bit-shared: Link with -lpthread | ||
5 | |||
6 | This fixes a reference to pthread_atfork in libfluent-bit.so | ||
7 | otherwise we get undefined reference to the symbols in binaries | ||
8 | which are linked with libfluent-bit.so | ||
9 | |||
10 | Fixes errors like | ||
11 | arm-bec-linux-gnueabi-ld: ../../bin/hello_world: hidden symbol `pthread_atfork' in /mnt/a/oe/build/tmp/work/cortexa7t2hf-neon-vfpv4-bec-linux-gnueabi/fluentbit/0.12.1-r0/recipe-sysroot/usr/lib/libpthread_nonshared.a(pthread_atfork.oS) is referenced by DSO | ||
12 | |||
13 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
14 | --- | ||
15 | Upstream-Status: Submitted | ||
16 | |||
17 | src/CMakeLists.txt | 2 +- | ||
18 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
19 | |||
20 | diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt | ||
21 | index 425a246..1264e59 100644 | ||
22 | --- a/src/CMakeLists.txt | ||
23 | +++ b/src/CMakeLists.txt | ||
24 | @@ -168,7 +168,7 @@ set(FLB_DEPS | ||
25 | # Shared Library | ||
26 | if(NOT FLB_WITHOUT_SHARED_LIB) | ||
27 | add_library(fluent-bit-shared SHARED ${src}) | ||
28 | - target_link_libraries(fluent-bit-shared ${FLB_DEPS}) | ||
29 | + target_link_libraries(fluent-bit-shared ${FLB_DEPS} -lpthread) | ||
30 | set_target_properties(fluent-bit-shared | ||
31 | PROPERTIES OUTPUT_NAME fluent-bit) | ||
32 | |||
33 | -- | ||
34 | 2.14.1 | ||
35 | |||