mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-03 18:38:11 +02:00
For GL, we disable the dlclose() call on the driver in asan builds so that leak reports get proper backtraces. For Vulkan, the dlclose() happens from libvulkan so you need a bigger hammer to keep our drivers loaded. Acked-by: Rob Clark <robdclark@chromium.org> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14235>
12 lines
240 B
Meson
12 lines
240 B
Meson
# Copyright © 2021 Collabora, Ltd.
|
|
# Author: Antonio Caggiano <antonio.caggiano@collabora.com>
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
if with_perfetto
|
|
subdir('pps')
|
|
endif
|
|
|
|
if with_tools.contains('dlclose-skip')
|
|
subdir('dlclose-skip')
|
|
endif
|