Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame^] | 1 | From bf41fa026ae3d378e62fd83d03a6f5933b52ca04 Mon Sep 17 00:00:00 2001 |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 2 | From: Alistair Francis <alistair@alistair23.me> |
| 3 | Date: Thu, 14 Nov 2019 13:08:31 -0800 |
Brad Bishop | 6dbb316 | 2019-11-25 09:41:34 -0500 | [diff] [blame] | 4 | Subject: [PATCH] meson.build: make TLS ELF optional |
| 5 | |
| 6 | USE_ELF_TLS has replaced GLX_USE_TLS so this patch is the original "make |
| 7 | TLS GLX optional again" patch updated to the latest mesa. |
| 8 | |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 9 | For details, see: |
| 10 | https://gitlab.freedesktop.org/mesa/mesa/-/issues/966 |
| 11 | |
| 12 | This prevents runtime segfault on musl: |
| 13 | |
| 14 | Traceback (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) |
| 19 | AssertionError: 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 |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 20 | |
Brad Bishop | 6dbb316 | 2019-11-25 09:41:34 -0500 | [diff] [blame] | 21 | Upstream-Status: Inappropriate [configuration] |
Brad Bishop | 6dbb316 | 2019-11-25 09:41:34 -0500 | [diff] [blame] | 22 | --- |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame^] | 23 | meson.build | 7 +++++-- |
Brad Bishop | 6dbb316 | 2019-11-25 09:41:34 -0500 | [diff] [blame] | 24 | meson_options.txt | 6 ++++++ |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame^] | 25 | 2 files changed, 11 insertions(+), 2 deletions(-) |
Brad Bishop | 6dbb316 | 2019-11-25 09:41:34 -0500 | [diff] [blame] | 26 | |
| 27 | diff --git a/meson.build b/meson.build |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame^] | 28 | index 70d06c0..1441611 100644 |
Brad Bishop | 6dbb316 | 2019-11-25 09:41:34 -0500 | [diff] [blame] | 29 | --- a/meson.build |
| 30 | +++ b/meson.build |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame^] | 31 | @@ -490,8 +490,11 @@ foreach platform : _platforms |
| 32 | pre_args += '-DHAVE_@0@_PLATFORM'.format(platform.to_upper()) |
| 33 | endforeach |
Andrew Geissler | d159c7f | 2021-09-02 21:05:58 -0500 | [diff] [blame] | 34 | |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame^] | 35 | -use_elf_tls = true |
| 36 | -pre_args += '-DUSE_ELF_TLS' |
| 37 | +use_elf_tls = false |
| 38 | +if get_option('elf-tls') |
| 39 | + use_elf_tls = true |
| 40 | + pre_args += '-DUSE_ELF_TLS' |
| 41 | +endif |
| 42 | |
| 43 | if with_platform_android and get_option('platform-sdk-version') >= 29 |
| 44 | # By default the NDK compiler, at least, emits emutls references instead of |
Brad Bishop | 6dbb316 | 2019-11-25 09:41:34 -0500 | [diff] [blame] | 45 | diff --git a/meson_options.txt b/meson_options.txt |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame^] | 46 | index 1f6ef38..99cc5cb 100644 |
Brad Bishop | 6dbb316 | 2019-11-25 09:41:34 -0500 | [diff] [blame] | 47 | --- a/meson_options.txt |
| 48 | +++ b/meson_options.txt |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame^] | 49 | @@ -440,6 +440,12 @@ option( |
Brad Bishop | 6dbb316 | 2019-11-25 09:41:34 -0500 | [diff] [blame] | 50 | 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 | +) |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame^] | 59 | option('egl-lib-suffix', |
| 60 | type : 'string', |
| 61 | value : '', |