git: a18fdf337b50 - main - audio/kaldi: Fix build on i386
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 19 Jan 2024 19:50:09 UTC
The branch main has been updated by yuri: URL: https://cgit.FreeBSD.org/ports/commit/?id=a18fdf337b50f2138fb26a364f6190928b9835ad commit a18fdf337b50f2138fb26a364f6190928b9835ad 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:07 +0000 audio/kaldi: Fix build on i386 Reported by: fallout --- 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