diff options
author | Jordan Justen <jordan.l.justen@intel.com> | 2023-09-15 10:00:51 -0700 |
---|---|---|
committer | Jordan Justen <jordan.l.justen@intel.com> | 2023-09-15 17:39:55 -0700 |
commit | 1a4636e15da98d8f573573290b2f3db073d05f2b (patch) | |
tree | e12df4db94bbcbb4b4b232b3fadb998ad84f83b5 | |
parent | 3c4c263dc734ec75f72d36b1d0d1a9cd41310112 (diff) |
intel/common: Add sse2_args for 32-bit build when -Dsse2=false was setintel-common-sse2_args
Fixes: 543a707b7b8 ("intel/common: Move intel_clflush.h to intel_mem.h/intel_mem.c")
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/9762
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
Reviewed-by: José Roberto de Souza <jose.souza@intel.com>
-rw-r--r-- | src/intel/common/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/common/meson.build b/src/intel/common/meson.build index 76b928e97ad..32c4151c4ca 100644 --- a/src/intel/common/meson.build +++ b/src/intel/common/meson.build @@ -85,7 +85,7 @@ libintel_common = static_library( 'intel_common', [files_libintel_common, genX_xml_h, sha1_h], include_directories : [inc_include, inc_src, inc_intel], - c_args : [no_override_init_args], + c_args : [no_override_init_args, sse2_args], gnu_symbol_visibility : 'hidden', link_with : libintel_common_links, dependencies : [batch_decoder_dependencies, dep_libdrm, dep_thread, idep_genxml, idep_mesautil, idep_intel_dev], |