Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
dnzbk committed Dec 3, 2024
1 parent 0a41680 commit 6e66a55
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/sources.cmake
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
if(IS_ARM)
CHECK_CXX_COMPILER_FLAG("-mfpu=neon -march=armv7-a" COMPILER_SUPPORTS_ARM32_NEON)
CHECK_CXX_COMPILER_FLAG("-mfpu=neon" COMPILER_SUPPORTS_ARM32_NEON)
if(COMPILER_SUPPORTS_ARM32_NEON)
set_source_files_properties(
${CMAKE_SOURCE_DIR}/lib/yencode/NeonDecoder.cpp
PROPERTIES COMPILE_FLAGS "-mfpu=neon -march=armv7-a"
PROPERTIES COMPILE_FLAGS "-mfpu=neon"
)
else()
CHECK_CXX_COMPILER_FLAG("-march=armv8-a+crc" COMPILER_SUPPORTS_ARM_CRC)
Expand Down
2 changes: 1 addition & 1 deletion linux/build-nzbget.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ COREX=4
TESTING="no"

# build variables
ALL_ARCHS="armel armhf aarch64 i686 x86_64 riscv64 mipsel mipseb ppc500 ppc6xx i686-ndk x86_64-ndk armhf-ndk aarch64-ndk x86_64-bsd"
ALL_ARCHS="armel"
ALL_PLATFORMS="linux android freebsd"
OUTPUTDIR=build
BUILDROOT_HOME=/build
Expand Down

0 comments on commit 6e66a55

Please sign in to comment.