mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1085607 - libvpx doesn't build on OS X with Apple clang from OS X 10.7 command line tools. r=giles
This commit is contained in:
parent
d5a7043678
commit
605e6115a1
29
media/libvpx/apple-clang.patch
Normal file
29
media/libvpx/apple-clang.patch
Normal file
@ -0,0 +1,29 @@
|
||||
diff --git a/media/libvpx/vp9/common/x86/vp9_subpixel_8t_intrin_avx2.c b/media/libvpx/vp9/common/x86/vp9_subpixel_8t_intrin_avx2.c
|
||||
--- a/media/libvpx/vp9/common/x86/vp9_subpixel_8t_intrin_avx2.c
|
||||
+++ b/media/libvpx/vp9/common/x86/vp9_subpixel_8t_intrin_avx2.c
|
||||
@@ -27,21 +27,24 @@ DECLARE_ALIGNED(32, static const uint8_t
|
||||
4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12
|
||||
};
|
||||
|
||||
DECLARE_ALIGNED(32, static const uint8_t, filt4_global_avx2[32]) = {
|
||||
6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13, 14,
|
||||
6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13, 14
|
||||
};
|
||||
|
||||
#if defined(__clang__)
|
||||
# if __clang_major__ < 3 || (__clang_major__ == 3 && __clang_minor__ <= 3) || \
|
||||
- (defined(__APPLE__) && __clang_major__ == 5 && __clang_minor__ == 0)
|
||||
+ (defined(__APPLE__) && \
|
||||
+ (__clang_major__ == 4 && __clang_minor__ >= 0 && \
|
||||
+ __clang_minor__ <= 2) || \
|
||||
+ (__clang_major__ == 5 && __clang_minor__ == 0))
|
||||
# define MM256_BROADCASTSI128_SI256(x) \
|
||||
_mm_broadcastsi128_si256((__m128i const *)&(x))
|
||||
# else // clang > 3.3, and not 5.0 on macosx.
|
||||
# define MM256_BROADCASTSI128_SI256(x) _mm256_broadcastsi128_si256(x)
|
||||
# endif // clang <= 3.3
|
||||
#elif defined(__GNUC__)
|
||||
# if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ <= 6)
|
||||
# define MM256_BROADCASTSI128_SI256(x) \
|
||||
_mm_broadcastsi128_si256((__m128i const *)&(x))
|
||||
# elif __GNUC__ == 4 && __GNUC_MINOR__ == 7
|
@ -530,6 +530,8 @@ def update_and_remove_files(prefix, libvpx_files, files):
|
||||
def apply_patches():
|
||||
# Patch to permit vpx users to specify their own <stdint.h> types.
|
||||
os.system("patch -p0 < stdint.patch")
|
||||
# Patch to allow older versions of Apple's clang to build libvpx.
|
||||
os.system("patch -p3 < apple-clang.patch")
|
||||
|
||||
def update_readme(commit):
|
||||
with open('README_MOZILLA') as f:
|
||||
|
@ -34,7 +34,10 @@ DECLARE_ALIGNED(32, static const uint8_t, filt4_global_avx2[32]) = {
|
||||
|
||||
#if defined(__clang__)
|
||||
# if __clang_major__ < 3 || (__clang_major__ == 3 && __clang_minor__ <= 3) || \
|
||||
(defined(__APPLE__) && __clang_major__ == 5 && __clang_minor__ == 0)
|
||||
(defined(__APPLE__) && \
|
||||
(__clang_major__ == 4 && __clang_minor__ >= 0 && \
|
||||
__clang_minor__ <= 2) || \
|
||||
(__clang_major__ == 5 && __clang_minor__ == 0))
|
||||
# define MM256_BROADCASTSI128_SI256(x) \
|
||||
_mm_broadcastsi128_si256((__m128i const *)&(x))
|
||||
# else // clang > 3.3, and not 5.0 on macosx.
|
||||
|
Loading…
Reference in New Issue
Block a user