PKGBUILDs/extra/x265/arm.patch

65 lines
2.5 KiB
Diff
Raw Normal View History

2018-10-08 16:07:35 +00:00
Binary files a/.hg/dirstate and b/.hg/dirstate differ
2014-03-30 04:59:56 +00:00
diff -urN a/source/CMakeLists.txt b/source/CMakeLists.txt
2018-10-08 16:07:35 +00:00
--- a/source/CMakeLists.txt 2018-10-08 10:04:19.918015626 -0600
+++ b/source/CMakeLists.txt 2018-10-08 10:04:37.277342636 -0600
@@ -40,7 +40,7 @@
2016-07-23 15:53:32 +00:00
# System architecture detection
string(TOLOWER "${CMAKE_SYSTEM_PROCESSOR}" SYSPROC)
set(X86_ALIASES x86 i386 i686 x86_64 amd64)
-set(ARM_ALIASES armv6l armv7l)
+set(ARM_ALIASES armv5tel armv6l armv7l)
list(FIND X86_ALIASES "${SYSPROC}" X86MATCH)
list(FIND ARM_ALIASES "${SYSPROC}" ARMMATCH)
set(POWER_ALIASES ppc64 ppc64le)
2018-10-08 16:07:35 +00:00
@@ -70,9 +70,17 @@
2016-07-23 15:53:32 +00:00
else()
set(CROSS_COMPILE_ARM 0)
endif()
2014-09-10 12:13:16 +00:00
- message(STATUS "Detected ARM target processor")
2016-07-23 15:53:32 +00:00
+ if(${SYSPROC} MATCHES "armv5.*")
+ message(STATUS "Detected ARMV5 system processor")
+ add_definitions(-DX265_ARCH_ARM=1 -DHAVE_ARMV6=0 -DHAVE_NEON=0)
+ elseif(${SYSPROC} STREQUAL "armv6l")
+ message(STATUS "Detected ARMV6 system processor")
2018-05-29 18:25:02 +00:00
+ add_definitions(-DX265_ARCH_ARM=1 -DHAVE_ARMV6=0 -DHAVE_NEON=0)
2016-07-23 15:53:32 +00:00
+ elseif(${SYSPROC} STREQUAL "armv7l")
+ message(STATUS "Detected ARMV7 system processor")
2018-05-29 18:25:02 +00:00
+ add_definitions(-DX265_ARCH_ARM=1 -DHAVE_ARMV6=0 -DHAVE_NEON=0 -fPIC)
2016-07-23 15:53:32 +00:00
+ endif()
set(ARM 1)
2014-03-30 04:59:56 +00:00
- add_definitions(-DX265_ARCH_ARM=1 -DHAVE_ARMV6=1)
else()
message(STATUS "CMAKE_SYSTEM_PROCESSOR value `${CMAKE_SYSTEM_PROCESSOR}` is unknown")
message(STATUS "Please add this value near ${CMAKE_CURRENT_LIST_FILE}:${CMAKE_CURRENT_LIST_LINE}")
2018-10-08 16:07:35 +00:00
@@ -227,18 +235,6 @@
2016-10-02 14:45:31 +00:00
endif()
2016-07-23 15:53:32 +00:00
endif()
2014-03-30 04:59:56 +00:00
endif()
2016-07-23 15:53:32 +00:00
- if(ARM AND CROSS_COMPILE_ARM)
- set(ARM_ARGS -march=armv6 -mfloat-abi=soft -mfpu=vfp -marm -fPIC)
- elseif(ARM)
- find_package(Neon)
- if(CPU_HAS_NEON)
- set(ARM_ARGS -mcpu=native -mfloat-abi=hard -mfpu=neon -marm -fPIC)
- add_definitions(-DHAVE_NEON)
- else()
- set(ARM_ARGS -mcpu=native -mfloat-abi=hard -mfpu=vfp -marm)
- endif()
- endif()
- add_definitions(${ARM_ARGS})
2015-10-11 14:21:16 +00:00
if(FPROFILE_GENERATE)
if(INTEL_CXX)
2016-07-23 15:53:32 +00:00
add_definitions(-prof-gen -prof-dir="${CMAKE_CURRENT_BINARY_DIR}")
2014-03-30 04:59:56 +00:00
diff -urN a/source/common/cpu.cpp b/source/common/cpu.cpp
2018-10-08 16:07:35 +00:00
--- a/source/common/cpu.cpp 2018-10-08 10:04:19.938014851 -0600
+++ b/source/common/cpu.cpp 2018-10-08 10:04:37.277342636 -0600
2014-04-10 13:34:31 +00:00
@@ -37,7 +37,7 @@
2014-03-30 04:59:56 +00:00
#include <machine/cpu.h>
#endif
-#if X265_ARCH_ARM && !defined(HAVE_NEON)
+#if X265_ARCH_ARM && (!defined(HAVE_NEON) || HAVE_NEON==0)
#include <signal.h>
#include <setjmp.h>
static sigjmp_buf jmpbuf;