diff options
author | Erik Faye-Lund <[email protected]> | 2018-12-30 22:57:46 +0100 |
---|---|---|
committer | Erik Faye-Lund <[email protected]> | 2018-12-31 17:28:21 +0100 |
commit | 86089a73169cfc526f36f2879fb9348c85583d1a (patch) | |
tree | f26501161d1e4a01f85a520c76677d8228d02b80 | |
parent | 89679e18a94c5983b66e3dbfb56cb350f1646333 (diff) |
anv/autotools: make sure tests link with -msse2
Without this, I get the following error when building the tests with
autotools on i686:
---8<---
src/intel/common/gen_clflush.h: In function ‘gen_clflush_range’:
src/intel/common/gen_clflush.h:37:7: warning: implicit declaration of function ‘__builtin_ia32_clflush’; did you mean ‘__builtin_ia32_pause’? [-Wimplicit-function-declaration]
__builtin_ia32_clflush(p);
^~~~~~~~~~~~~~~~~~~~~~
__builtin_ia32_pause
src/intel/common/gen_clflush.h: In function ‘gen_flush_range’:
src/intel/common/gen_clflush.h:45:4: warning: implicit declaration of function ‘__builtin_ia32_mfence’; did you mean ‘__builtin_ia32_fnclex’? [-Wimplicit-function-declaration]
__builtin_ia32_mfence();
^~~~~~~~~~~~~~~~~~~~~
__builtin_ia32_fnclex
---8<---
The erros are generated for each of these files:
- mesa/src/intel/vulkan/tests/state_pool_no_free.c
- mesa/src/intel/vulkan/tests/state_pool.c
- mesa/src/intel/vulkan/tests/block_pool_no_free.c
- mesa/src/intel/vulkan/tests/state_pool_free_list_only.c
This is obviously because gen_clflush.h contains code that uses
intrinsics that are only available with SSE3. Since the driver already
uses SSE3, it seems reasonable to add this to the tests as well.
Signed-off-by: Erik Faye-Lund <[email protected]>
Reviewed-by: Jordan Justen <[email protected]>
Acked-by: Eric Engeström <[email protected]>
-rw-r--r-- | src/intel/Makefile.vulkan.am | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/intel/Makefile.vulkan.am b/src/intel/Makefile.vulkan.am index ccf7a9f4690..b315f10a01a 100644 --- a/src/intel/Makefile.vulkan.am +++ b/src/intel/Makefile.vulkan.am @@ -262,15 +262,19 @@ VULKAN_TEST_LDADD = \ check_PROGRAMS += $(VULKAN_TESTS) TESTS += $(VULKAN_TESTS) +vulkan_tests_block_pool_no_free_CFLAGS = $(VULKAN_CFLAGS) vulkan_tests_block_pool_no_free_CPPFLAGS = $(VULKAN_CPPFLAGS) vulkan_tests_block_pool_no_free_LDADD = $(VULKAN_TEST_LDADD) +vulkan_tests_state_pool_no_free_CFLAGS = $(VULKAN_CFLAGS) vulkan_tests_state_pool_no_free_CPPFLAGS = $(VULKAN_CPPFLAGS) vulkan_tests_state_pool_no_free_LDADD = $(VULKAN_TEST_LDADD) +vulkan_tests_state_pool_free_list_only_CFLAGS = $(VULKAN_CFLAGS) vulkan_tests_state_pool_free_list_only_CPPFLAGS = $(VULKAN_CPPFLAGS) vulkan_tests_state_pool_free_list_only_LDADD = $(VULKAN_TEST_LDADD) +vulkan_tests_state_pool_CFLAGS = $(VULKAN_CFLAGS) vulkan_tests_state_pool_CPPFLAGS = $(VULKAN_CPPFLAGS) vulkan_tests_state_pool_LDADD = $(VULKAN_TEST_LDADD) |