Changes of Revision 5

x265.changes Changed
x
 
1
@@ -1,4 +1,10 @@
2
 -------------------------------------------------------------------
3
+Thu Jun  5 14:55:45 UTC 2014 - guillaume@opensuse.org
4
+
5
+- Fix ARM build with arm.patch from Arch Linux:
6
+  https://github.com/archlinuxarm/PKGBUILDs/blob/master/extra/x265/arm.patch
7
+
8
+-------------------------------------------------------------------
9
 Thu May 08 00:00:00 UTC 2014 - Manfred.Tremmel@iiv.de
10
 
11
 - added baselibs.conf
12
x265.spec Changed
19
 
1
@@ -12,6 +12,7 @@
2
 Url:            https://bitbucket.org/multicoreware/x265/wiki/Home
3
 Group:          Productivity/Multimedia/Video/Editors and Convertors
4
 Source0:        %{name}-hg%{hgdate}.tar.bz2
5
+Patch0:         arm.patch
6
 BuildRequires:  gcc gcc-c++
7
 BuildRequires:  cmake >= 2.8.8
8
 BuildRequires:  pkg-config
9
@@ -44,6 +45,9 @@
10
 
11
 %prep
12
 %setup -q -n "%{name}/build/linux"
13
+cd ../..
14
+%patch0 -p1
15
+cd -
16
 %define FAKE_BUILDDATE %(LC_ALL=C date -u -r %{_sourcedir}/%{name}.changes '+%%b %%e %%Y')
17
 sed -i -e "s/0.0/%{soname}.0/g" ../../source/cmake/version.cmake
18
 cmake  -DCMAKE_INSTALL_PREFIX=/usr -DENABLE_TESTS=ON -G "Unix Makefiles" ../../source
19
arm.patch Added
67
 
1
@@ -0,0 +1,65 @@
2
+diff -urN a/source/CMakeLists.txt b/source/CMakeLists.txt
3
+--- a/source/CMakeLists.txt    2014-04-03 00:00:44.000000000 -0600
4
++++ b/source/CMakeLists.txt    2014-04-10 07:32:36.022010974 -0600
5
+@@ -39,10 +39,18 @@
6
+         set(X64 1)
7
+         add_definitions(-DX86_64=1)
8
+     endif()
9
++elseif(${SYSPROC} MATCHES "armv5.*")
10
++    message(STATUS "Detected ARMV5 system processor")
11
++    set(ARMV5 1)
12
++    add_definitions(-DX265_ARCH_ARM=1 -DHAVE_ARMV6=0 -DHAVE_NEON=0)
13
+ elseif(${SYSPROC} STREQUAL "armv6l")
14
+-    message(STATUS "Detected ARM system processor")
15
+-    set(ARM 1)
16
+-    add_definitions(-DX265_ARCH_ARM=1 -DHAVE_ARMV6=1)
17
++    message(STATUS "Detected ARMV6 system processor")
18
++    set(ARMV6 1)
19
++    add_definitions(-DX265_ARCH_ARM=1 -DHAVE_ARMV6=1 -DHAVE_NEON=0)
20
++elseif(${SYSPROC} STREQUAL "armv7l")
21
++    message(STATUS "Detected ARMV7 system processor")
22
++    set(ARMV7 1)
23
++    add_definitions(-DX265_ARCH_ARM=1 -DHAVE_ARMV6=1 -DHAVE_NEON=0)
24
+ else()
25
+     message(STATUS "CMAKE_SYSTEM_PROCESSOR value `${CMAKE_SYSTEM_PROCESSOR}` is unknown")
26
+     message(STATUS "Please add this value near ${CMAKE_CURRENT_LIST_FILE}:${CMAKE_CURRENT_LIST_LINE}")
27
+@@ -122,8 +130,8 @@
28
+     if(X86 AND NOT X64)
29
+         add_definitions(-march=i686)
30
+     endif()
31
+-    if(ARM)
32
+-        add_definitions(-march=armv6 -mfloat-abi=hard -mfpu=vfp)
33
++    if(ARMV7)
34
++        add_definitions(-fPIC)
35
+     endif()
36
+ endif(GCC)
37
+ 
38
+diff -urN a/source/common/cpu.cpp b/source/common/cpu.cpp
39
+--- a/source/common/cpu.cpp    2014-04-03 00:00:44.000000000 -0600
40
++++ b/source/common/cpu.cpp    2014-04-10 07:28:51.937129997 -0600
41
+@@ -37,7 +37,7 @@
42
+ #include <machine/cpu.h>
43
+ #endif
44
+ 
45
+-#if X265_ARCH_ARM && !defined(HAVE_NEON)
46
++#if X265_ARCH_ARM && (!defined(HAVE_NEON) || HAVE_NEON==0)
47
+ #include <signal.h>
48
+ #include <setjmp.h>
49
+ static sigjmp_buf jmpbuf;
50
+@@ -340,7 +340,6 @@
51
+     }
52
+ 
53
+     canjump = 1;
54
+-    x265_cpu_neon_test();
55
+     canjump = 0;
56
+     signal(SIGILL, oldsig);
57
+ #endif // if !HAVE_NEON
58
+@@ -356,7 +355,7 @@
59
+     // which may result in incorrect detection and the counters stuck enabled.
60
+     // right now Apple does not seem to support performance counters for this test
61
+ #ifndef __MACH__
62
+-    flags |= x265_cpu_fast_neon_mrc_test() ? X265_CPU_FAST_NEON_MRC : 0;
63
++    //flags |= x265_cpu_fast_neon_mrc_test() ? X265_CPU_FAST_NEON_MRC : 0;
64
+ #endif
65
+     // TODO: write dual issue test? currently it's A8 (dual issue) vs. A9 (fast mrc)
66
+ #endif // if HAVE_ARMV6
67