mirror of
https://gitee.com/openharmony/third_party_mesa3d
synced 2024-11-27 01:20:36 +00:00
meson: don't advertise TLS support if glx wasn't build with it
Fixes: a47c525f32
("meson: build glx")
Signed-off-by: Eric Engestrom <eric.engestrom@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5630>
This commit is contained in:
parent
f9a7e6e854
commit
9ac1686422
@ -427,8 +427,10 @@ else
|
||||
endif
|
||||
|
||||
# Android uses emutls for versions <= P/28. For USE_ELF_TLS we need ELF TLS.
|
||||
use_elf_tls = false
|
||||
if not ['windows', 'freebsd'].contains(host_machine.system()) and (not with_platform_android or get_option('platform-sdk-version') >= 29)
|
||||
pre_args += '-DUSE_ELF_TLS'
|
||||
use_elf_tls = true
|
||||
endif
|
||||
|
||||
if with_glx != 'disabled'
|
||||
|
@ -126,6 +126,6 @@ if with_glx != 'disabled' and not with_glvnd
|
||||
libraries : libgl,
|
||||
libraries_private : gl_priv_libs,
|
||||
requires_private : gl_priv_reqs,
|
||||
variables : ['glx_tls=yes'],
|
||||
variables : ['glx_tls=@0@'.format(use_elf_tls ? 'yes' : 'no')],
|
||||
)
|
||||
endif
|
||||
|
Loading…
Reference in New Issue
Block a user