git: bd5f690f5dda - 2024Q1 - audio/kaldi: Fix build on i386
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 19 Jan 2024 19:50:27 UTC
The branch 2024Q1 has been updated by yuri:
URL: https://cgit.FreeBSD.org/ports/commit/?id=bd5f690f5dda4190deaad3043cf92db9deae5683
commit bd5f690f5dda4190deaad3043cf92db9deae5683
Author: Yuri Victorovich <yuri@FreeBSD.org>
AuthorDate: 2024-01-19 19:49:33 +0000
Commit: Yuri Victorovich <yuri@FreeBSD.org>
CommitDate: 2024-01-19 19:50:25 +0000
audio/kaldi: Fix build on i386
Reported by: fallout
(cherry picked from commit a18fdf337b50f2138fb26a364f6190928b9835ad)
---
audio/kaldi/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/audio/kaldi/Makefile b/audio/kaldi/Makefile
index 40017fa83c14..279ac2753021 100644
--- a/audio/kaldi/Makefile
+++ b/audio/kaldi/Makefile
@@ -24,7 +24,7 @@ CMAKE_OFF= KALDI_BUILD_TEST
CMAKE_ARGS= -DPython_EXECUTABLE=${PYTHON_CMD} \
-DKALDI_VERSION=${PORTVERSION}
-CXXFLAGS_i386= -msse # SSE is off by default on i386 and compilation fails: /usr/local/include/fst/float-weight.h:99:2: error: "Please compile with -msse -mfpmath=sse, or equivalent."
+CXXFLAGS_i386= -msse -mfpmath=sse # SSE is off by default on i386 and compilation fails: /usr/local/include/fst/float-weight.h:99:2: error: "Please compile with -msse -mfpmath=sse, or equivalent."
post-extract:
@${FIND} ${WRKSRC} -name "*.orig" -delete