[Buildroot] [git commit branch/2020.05.x] package/sdl2: enable SSE only if it's supported by the target

Peter Korsgaard peter at korsgaard.com
Thu Jul 16 16:06:56 UTC 2020


commit: https://git.buildroot.net/buildroot/commit/?id=2f822c2d0c23a41a1eff330eb12d21cf1c9cfea9
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/2020.05.x

Signed-off-by: Nicolas Robin <nrosfs at gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni at bootlin.com>
(cherry picked from commit a14a9629837a4de32a7a06a2f7b0e88958948ce5)
Signed-off-by: Peter Korsgaard <peter at korsgaard.com>
---
 package/sdl2/sdl2.mk | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/package/sdl2/sdl2.mk b/package/sdl2/sdl2.mk
index 501bb4699d..4a287b66a3 100644
--- a/package/sdl2/sdl2.mk
+++ b/package/sdl2/sdl2.mk
@@ -30,6 +30,12 @@ else
 SDL2_CONF_OPTS += --disable-libudev
 endif
 
+ifeq ($(BR2_X86_CPU_HAS_SSE),y)
+SDL2_CONF_OPTS += --enable-sse
+else
+SDL2_CONF_OPTS += --disable-sse
+endif
+
 ifeq ($(BR2_PACKAGE_SDL2_DIRECTFB),y)
 SDL2_DEPENDENCIES += directfb
 SDL2_CONF_OPTS += --enable-video-directfb


More information about the buildroot mailing list