diff options
author | Sergii Romantsov <[email protected]> | 2018-09-06 11:07:45 +0300 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2018-09-07 13:45:46 +0100 |
commit | d709f127927cb0ad40d5bf4eaec33c3c27f7738a (patch) | |
tree | cf322d59e14b46e9fbae1add8a68d02c5de3b029 /src/intel/Makefile.vulkan.am | |
parent | 5404e0637f17fa7ae33db33760e10bf4f73b3095 (diff) |
intel: compiler option msse2 and mstackrealign
Seems in case of 32-bit library, usage of msse2 makes
some stack corruption or incorrect instructions.
Usage with mstackrealign fixes that case.
v2: Fixed meson.
v3: Definition of c_sse2_args moved on the top (L.Landwerlin).
Added mstackrealign for Android's mks where msee4.1 is used.
v4: Added for Vulkan also.
v5: Commit message correction.
CC: <[email protected]>
Fixes: 6b05c080f202 (i965: Compile with -msse3)
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=107779
Signed-off-by: Sergii Romantsov <[email protected]>
Reviewed-by: Dylan Baker <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Reviewed-by: Lionel Landwerlin <[email protected]>
Diffstat (limited to 'src/intel/Makefile.vulkan.am')
-rw-r--r-- | src/intel/Makefile.vulkan.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/Makefile.vulkan.am b/src/intel/Makefile.vulkan.am index 9555d98095b..d5112633b5c 100644 --- a/src/intel/Makefile.vulkan.am +++ b/src/intel/Makefile.vulkan.am @@ -104,7 +104,7 @@ noinst_LTLIBRARIES += $(VULKAN_PER_GEN_LIBS) VULKAN_CFLAGS = \ $(AM_CFLAGS) \ - -msse2 + -msse2 -mstackrealign VULKAN_CPPFLAGS = \ -I$(top_srcdir)/src/compiler \ |