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/mesa/Android.libmesa_sse41.mk | |
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/mesa/Android.libmesa_sse41.mk')
-rw-r--r-- | src/mesa/Android.libmesa_sse41.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/Android.libmesa_sse41.mk b/src/mesa/Android.libmesa_sse41.mk index da40f43df69..de19a1fb48b 100644 --- a/src/mesa/Android.libmesa_sse41.mk +++ b/src/mesa/Android.libmesa_sse41.mk @@ -34,7 +34,7 @@ LOCAL_SRC_FILES += \ $(X86_SSE41_FILES) LOCAL_CFLAGS := \ - -msse4.1 + -msse4.1 -mstackrealign LOCAL_C_INCLUDES := \ $(MESA_TOP)/src/mapi \ |