Skip to content
Snippets Groups Projects
Commit af51a911 authored by Yuri Victorovich's avatar Yuri Victorovich
Browse files

math/kfr: Fix plist on non-Intel architectures

Reported by:	fallout
parent b703b29e
No related branches found
No related tags found
No related merge requests found
......@@ -25,6 +25,21 @@ CMAKE_TESTING_TARGET= ${ALL_TARGET}
#CXXFLAGS_armv6= -march=native # to fix: ARM builds require NEON support. Add -march=native for native build or skip the check with CMT_FORCE_GENERIC_CPU=1
CMAKE_ARGS_armv6= -DCMT_FORCE_GENERIC_CPU=1 # to fix: ARM builds require NEON support. Add -march=native for native build or skip the check with CMT_FORCE_GENERIC_CPU=1
.include <bsd.port.options.mk>
.if ${ARCH} == amd64 || ${ARCH} == i386
PLIST_FILES= lib/libkfr_dft_avx.so \
lib/libkfr_dft_avx2.so \
lib/libkfr_dft_avx512.so \
lib/libkfr_dft_sse2.so \
lib/libkfr_dft_sse41.so \
lib/libkfr_dsp_avx.so \
lib/libkfr_dsp_avx2.so \
lib/libkfr_dsp_avx512.so \
lib/libkfr_dsp_sse2.so \
lib/libkfr_dsp_sse41.so
.endif
post-test: # see https://github.com/kfrlib/kfr/issues/164
@cd ${BUILD_WRKSRC} && \
${BUILD_WRKSRC}/bin/all_tests
......
......@@ -147,14 +147,4 @@ include/kfr/version.hpp
lib/cmake/kfr/KFRConfig-%%CMAKE_BUILD_TYPE%%.cmake
lib/cmake/kfr/KFRConfig.cmake
lib/cmake/kfr/KFRConfigVersion.cmake
lib/libkfr_dft_avx.so
lib/libkfr_dft_avx2.so
lib/libkfr_dft_avx512.so
lib/libkfr_dft_sse2.so
lib/libkfr_dft_sse41.so
lib/libkfr_dsp_avx.so
lib/libkfr_dsp_avx2.so
lib/libkfr_dsp_avx512.so
lib/libkfr_dsp_sse2.so
lib/libkfr_dsp_sse41.so
lib/libkfr_io.so
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment