Displaying 1 result from an estimated 1 matches for "1fb4c44".
2012 Sep 29
0
[PATCH for Debian packaging] armhf builds are always thumb
...one's for maks' git, not for hpa's. Tell klibc what the
compiler defaults already require: armhf is thumb.
Signed-off-by: Thorsten Glaser <tg at mirbsd.org>
---
debian/rules | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/debian/rules b/debian/rules
index 1fb4c44..ec55d7d 100755
--- a/debian/rules
+++ b/debian/rules
@@ -10,7 +10,7 @@ ifeq ($(DEB_HOST_ARCH),armel)
DEB_MAKE_ENVVARS := ARCH=arm CONFIG_AEABI=y
endif
ifeq ($(DEB_HOST_ARCH),armhf)
-DEB_MAKE_ENVVARS := ARCH=arm CONFIG_AEABI=y CPU_ARCH=armv7-a CPU_TUNE=cortex-a8
+DEB_MAKE_ENVVARS := ARCH=arm CON...