From 522b5f44065b8be4dc708e557f0b6ec4bc44f30a Mon Sep 17 00:00:00 2001 From: Jose V Beneyto Date: Tue, 13 Aug 2013 16:40:30 +0000 Subject: [PATCH] Removed optimization per device. The product should be a generic toolchain since we apply optimizations lately on native builds, so the toolchain is not affected by optimizations and that will make our work easiest --- efikamx.mk | 8 -------- generic.mk | 4 ---- raspberrypi.mk | 8 -------- vars.mk | 6 +++--- 4 files changed, 3 insertions(+), 23 deletions(-) delete mode 100644 efikamx.mk delete mode 100644 generic.mk delete mode 100644 raspberrypi.mk diff --git a/efikamx.mk b/efikamx.mk deleted file mode 100644 index 48c7cca..0000000 --- a/efikamx.mk +++ /dev/null @@ -1,8 +0,0 @@ -# Hardfp EfikaMX imx51 -ABI = aapcs-linux -ARCH = armv7-a -FPU = vfpv3-d16 -MODE = thumb -FLOAT = hard - -# End of file diff --git a/generic.mk b/generic.mk deleted file mode 100644 index b894fb4..0000000 --- a/generic.mk +++ /dev/null @@ -1,4 +0,0 @@ -# Generic hardfp toolchain -ABI = aapcs-linux -MODE = arm -FLOAT = hard diff --git a/raspberrypi.mk b/raspberrypi.mk deleted file mode 100644 index f011afb..0000000 --- a/raspberrypi.mk +++ /dev/null @@ -1,8 +0,0 @@ -# Hardfp raspberrypi -ABI = aapcs-linux -ARCH = armv6zk -FPU = vfp -MODE = arm -FLOAT = hard - -# End of file diff --git a/vars.mk b/vars.mk index e273fe4..6033092 100644 --- a/vars.mk +++ b/vars.mk @@ -18,8 +18,8 @@ BINUTILS_VERSION = 2.22 GCC_VERSION = 4.7.2 GLIBC_VERSION = 2.16.0 -# Optimizations per device: generic/efikamx/raspberrypi -DEVICE=generic -include $(TOPDIR)/$(DEVICE).mk +ABI = aapcs-linux +MODE = arm +FLOAT = hard # End of file -- 2.26.2