blob: 35ab8d5a7256f28977bd97f3facc8638f1856b7b [file] [log] [blame]
Andrew Geisslerd159c7f2021-09-02 21:05:58 -05001From 8f2f48b41aa17eec3c4d63685e3296f28e60b980 Mon Sep 17 00:00:00 2001
Andrew Geissler82c905d2020-04-13 13:39:40 -05002From: Alistair Francis <alistair@alistair23.me>
3Date: Thu, 14 Nov 2019 13:08:31 -0800
Brad Bishop6dbb3162019-11-25 09:41:34 -05004Subject: [PATCH] meson.build: make TLS ELF optional
5
6USE_ELF_TLS has replaced GLX_USE_TLS so this patch is the original "make
7TLS GLX optional again" patch updated to the latest mesa.
8
Andrew Geisslerd1e89492021-02-12 15:35:20 -06009For details, see:
10https://gitlab.freedesktop.org/mesa/mesa/-/issues/966
11
12This prevents runtime segfault on musl:
13
14Traceback (most recent call last):
15 File "/home/pokybuild/yocto-worker/musl-qemux86/build/meta/lib/oeqa/core/decorator/__init__.py", line 36, in wrapped_f
16 return func(*args, **kwargs)
17 File "/home/pokybuild/yocto-worker/musl-qemux86/build/meta/lib/oeqa/runtime/cases/parselogs.py", line 378, in test_parselogs
18 self.assertEqual(errcount, 0, msg=self.msg)
19AssertionError: 1 != 0 : Log: /home/pokybuild/yocto-worker/musl-qemux86/build/build/tmp/work/qemux86-poky-linux-musl/core-image-sato-sdk/1.0-r0/target_logs/Xorg.0.log
20-----------------------
21Central error: [ 10.477] (EE) Failed to load /usr/lib/xorg/modules/extensions/libglx.so: Error relocating /usr/lib/libGL.so.1: alphasort: initial-exec TLS resolves to dynamic definition in /usr/lib/libGL.so.1
22***********************
23
Brad Bishop6dbb3162019-11-25 09:41:34 -050024Upstream-Status: Inappropriate [configuration]
Andrew Geissler82c905d2020-04-13 13:39:40 -050025Signed-off-by: Alistair Francis <alistair@alistair23.me>
Brad Bishop6dbb3162019-11-25 09:41:34 -050026
27---
28 meson.build | 2 +-
29 meson_options.txt | 6 ++++++
30 2 files changed, 7 insertions(+), 1 deletion(-)
31
32diff --git a/meson.build b/meson.build
Andrew Geisslerd159c7f2021-09-02 21:05:58 -050033index 23618c1..c8cc5e3 100644
Brad Bishop6dbb3162019-11-25 09:41:34 -050034--- a/meson.build
35+++ b/meson.build
Andrew Geisslerd159c7f2021-09-02 21:05:58 -050036@@ -476,7 +476,7 @@ endif
Andrew Geissler6ce62a22020-11-30 19:58:47 -060037 use_elf_tls = false
William A. Kennington IIIac69b482021-06-02 12:28:27 -070038 if (not ['freebsd', 'openbsd', 'haiku'].contains(host_machine.system()) and
39 (not with_platform_android or get_option('platform-sdk-version') >= 29) and
40- (not with_platform_windows or not with_shared_glapi))
41+ (not with_platform_windows or not with_shared_glapi) and get_option('elf-tls'))
Brad Bishop6dbb3162019-11-25 09:41:34 -050042 pre_args += '-DUSE_ELF_TLS'
Andrew Geissler6ce62a22020-11-30 19:58:47 -060043 use_elf_tls = true
Andrew Geisslerd159c7f2021-09-02 21:05:58 -050044
Brad Bishop6dbb3162019-11-25 09:41:34 -050045diff --git a/meson_options.txt b/meson_options.txt
Andrew Geisslerd159c7f2021-09-02 21:05:58 -050046index 29c402c..f70d9b2 100644
Brad Bishop6dbb3162019-11-25 09:41:34 -050047--- a/meson_options.txt
48+++ b/meson_options.txt
Andrew Geisslerd159c7f2021-09-02 21:05:58 -050049@@ -455,6 +455,12 @@ option(
Brad Bishop6dbb3162019-11-25 09:41:34 -050050 value : true,
51 description : 'Enable direct rendering in GLX and EGL for DRI',
52 )
53+option(
54+ 'elf-tls',
55+ type : 'boolean',
56+ value : true,
57+ description : 'Enable TLS support in ELF',
58+)
59 option(
Andrew Geissler475cb722020-07-10 16:00:51 -050060 'prefer-iris',
Brad Bishop6dbb3162019-11-25 09:41:34 -050061 type : 'boolean',