mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-02 16:38:09 +02:00
i965/tools: 32bit compilation with meson
Building of 32bit mesa with meson causes issue:
"implicit declaration of function ‘__builtin_ia32_clflush’".
Fixed by adding msse2 compilation flag.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=107843
Fixes: 314879f7fe (i965: Fix asynchronous mappings on !LLC platforms.)
Signed-off-by: Sergii Romantsov <sergii.romantsov@globallogic.com>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
This commit is contained in:
parent
d709f12792
commit
97fcccb25e
1 changed files with 1 additions and 1 deletions
|
|
@ -90,7 +90,7 @@ libintel_sanitize_gpu = shared_library(
|
|||
dependencies : [dep_dl, dep_thread],
|
||||
include_directories : [inc_common, inc_intel, inc_drm_uapi],
|
||||
link_with : [libintel_common, libmesa_util],
|
||||
c_args : [c_vis_args, no_override_init_args],
|
||||
c_args : [c_vis_args, no_override_init_args, c_sse2_args],
|
||||
build_by_default : true,
|
||||
install_dir: get_option('libexecdir'),
|
||||
install: true
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue