summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorYonggang Luo <luoyonggang@gmail.com>2024-03-09 04:34:01 +0800
committerMarge Bot <emma+marge@anholt.net>2024-03-22 18:22:34 +0000
commit1d18aba0166ca678120f027eac06c9484b57edc7 (patch)
tree92d3e9a3e780dd50b34b098eb163efe1ebbbaf31 /meson.build
parent1ac1c0843f5be6e51ad3a10cd96eeec53df0d9d0 (diff)
meson: Remove the non-used -DDEBUG manually
And also remove the workarounds for LLVM and bellagio Signed-off-by: Yonggang Luo <luoyonggang@gmail.com> Acked-by: David Heidelberg <david.heidelberg@collabora.com> Reviewed-by: Eric Engestrom <eric@igalia.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/28092>
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build5
1 files changed, 0 insertions, 5 deletions
diff --git a/meson.build b/meson.build
index bf2612ebc38..d74ad39b18a 100644
--- a/meson.build
+++ b/meson.build
@@ -956,11 +956,6 @@ if cc.get_define('ETIME', prefix : '#include <errno.h>') == ''
pre_args += '-DETIME=ETIMEDOUT'
endif
-# Define DEBUG for debug builds only (debugoptimized is not included on this one)
-if with_mesa_debug
- pre_args += '-DDEBUG'
-endif
-
# Define MESA_DEBUG to 1 for debug builds only (debugoptimized is not included on this one);
# otherwise define MESA_DEBUG to 0
pre_args += '-DMESA_DEBUG=' + (with_mesa_debug ? '1' : '0')