vk: Don't override and hardcode autoconf CFLAGS

To disable optimizations pass CFLAGS="-O0 -g" on the configure command
line.
This commit is contained in:
Kristian Høgsberg Kristensen 2015-12-04 17:18:16 -08:00
parent 7337870036
commit 0a5bee1fe6
1 changed files with 1 additions and 3 deletions

View File

@ -65,9 +65,7 @@ AM_CPPFLAGS = \
-I$(top_builddir)/src/glsl/nir \
-I$(top_builddir)/src/vulkan
libvulkan_la_CFLAGS = \
-Wall -Wno-unused-parameter -fvisibility=hidden -O0 -g \
-Wstrict-prototypes -Wmissing-prototypes -Wno-override-init
libvulkan_la_CFLAGS = $(CFLAGS) -Wno-override-init
VULKAN_SOURCES = \
anv_allocator.c \