summaryrefslogtreecommitdiff
path: root/recipes/libvorbis
diff options
context:
space:
mode:
authorAndoni Morales Alastruey <ylatuya@gmail.com>2013-11-04 12:39:27 +0100
committerAndoni Morales Alastruey <ylatuya@gmail.com>2013-11-04 12:39:27 +0100
commit1e0de7ec611fb23e822a9d025ac34cd8bb0c4726 (patch)
treeb92b7ae2dc156627a1a943bf42e36579a63c7415 /recipes/libvorbis
parentfbe65255e7c31bc45e5aac536cf4d0341c723aeb (diff)
vorbis: fix build for non generic arm architectures
Diffstat (limited to 'recipes/libvorbis')
-rw-r--r--recipes/libvorbis/0005-darwin-do-not-build-for-a-generic-arm-architecture.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/recipes/libvorbis/0005-darwin-do-not-build-for-a-generic-arm-architecture.patch b/recipes/libvorbis/0005-darwin-do-not-build-for-a-generic-arm-architecture.patch
new file mode 100644
index 00000000..6153da70
--- /dev/null
+++ b/recipes/libvorbis/0005-darwin-do-not-build-for-a-generic-arm-architecture.patch
@@ -0,0 +1,30 @@
+From dded9c5c30cf45320541c27e444d9150b04e6ab5 Mon Sep 17 00:00:00 2001
+From: Andoni Morales Alastruey <ylatuya@gmail.com>
+Date: Mon, 4 Nov 2013 12:15:10 +0100
+Subject: [PATCH] darwin: do not build for a generic arm architecture
+
+These linker flags end up building for generic arm when armv7 is required
+---
+ configure.ac | 6 +++---
+ 1 files changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index 953107d..a5c0f88 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -198,9 +198,9 @@ else
+ CFLAGS="-O20 -Wall -Wextra -ffast-math -D__NO_MATH_INLINES -fsigned-char $sparc_cpu"
+ PROFILE="-pg -g -O20 -D__NO_MATH_INLINES -fsigned-char $sparc_cpu" ;;
+ *-*-darwin*)
+- DEBUG="-DDARWIN -fno-common -force_cpusubtype_ALL -Wall -g -O0 -fsigned-char"
+- CFLAGS="-DDARWIN -fno-common -force_cpusubtype_ALL -Wall -g -O4 -ffast-math -fsigned-char"
+- PROFILE="-DDARWIN -fno-common -force_cpusubtype_ALL -Wall -g -pg -O4 -ffast-math -fsigned-char";;
++ DEBUG="-DDARWIN -fno-common -Wall -g -O0 -fsigned-char"
++ CFLAGS="-DDARWIN -fno-common -Wall -g -O2 -ffast-math -fsigned-char"
++ PROFILE="-DDARWIN -fno-common -Wall -g -pg -O2 -ffast-math -fsigned-char";;
+ *-*-os2*)
+ # Use -W instead of -Wextra because gcc on OS/2 is an old version.
+ DEBUG="-g -Wall -W -D_REENTRANT -D__NO_MATH_INLINES -fsigned-char"
+--
+1.7.4.4
+