Skip to content

Commit 0f1ee68

Browse files
Update ddb_dsp_libretro and apply SSE3 detection
1 parent 0cf6716 commit 0f1ee68

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

configure.ac

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -375,6 +375,11 @@ AS_IF([test "${HAVE_SSE2}"], [
375375
AC_DEFINE(HAVE_SSE2,1,[Support SSE2 instructions])
376376
])
377377

378+
AX_CHECK_COMPILER_FLAGS(-msse3, HAVE_SSE3=1, [], -Werror)
379+
AS_IF([test "${HAVE_SSE3}"], [
380+
AC_DEFINE(HAVE_SSE3,1,[Support SSE3 instructions])
381+
])
382+
378383
dnl curl lib
379384
AS_IF([test "${enable_staticlink}" != "no"], [
380385
HAVE_CURL=yes
@@ -932,6 +937,7 @@ AM_CONDITIONAL(PORTABLE, test "x$PORTABLE" = "xyes")
932937
AM_CONDITIONAL(PORTABLE_FULL, test "x$PORTABLE_FULL" = "xyes")
933938
AM_CONDITIONAL(USE_ABSTRACT_SOCKET_NAME, test "x$USE_ABSTRACT_SOCKET_NAME" = "xyes")
934939
AM_CONDITIONAL(HAVE_SSE2, test "${HAVE_SSE2}")
940+
AM_CONDITIONAL(HAVE_SSE3, test "${HAVE_SSE3}")
935941
dnl AM_CONDITIONAL(HAVE_STATUSNOTIFIER, test "x$HAVE_STATUSNOTIFIER" = "xyes")
936942
AM_CONDITIONAL(HAVE_RGSCANNER, test "x$HAVE_RGSCANNER" = "xyes")
937943
AM_CONDITIONAL(HAVE_SOUNDTOUCH, test "x$HAVE_SOUNDTOUCH" = "xyes")

external/ddb_dsp_libretro

0 commit comments

Comments
 (0)