summaryrefslogtreecommitdiff
path: root/mk/mips-arch.mk
diff options
context:
space:
mode:
Diffstat (limited to 'mk/mips-arch.mk')
-rw-r--r--mk/mips-arch.mk13
1 files changed, 10 insertions, 3 deletions
diff --git a/mk/mips-arch.mk b/mk/mips-arch.mk
index b51dde8..06e48b9 100644
--- a/mk/mips-arch.mk
+++ b/mk/mips-arch.mk
@@ -1,4 +1,4 @@
-#########################################################################################
+################################################################################
# GAYE Abdoulaye Walsimou, <walsimou@walsimou.com>
# Copyright(C) 2009 GAYE Abdoulaye Walsimou. All rights reserved.
#
@@ -14,13 +14,13 @@
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
-#########################################################################################
+################################################################################
#
# \file mips_arch.mk
# \brief mips_arch.mk of Embtoolkit
# \author GAYE Abdoulaye Walsimou, <walsimou@walsimou.com>
# \date May 2009
-#########################################################################################
+################################################################################
ifeq ($(CONFIG_EMBTK_ARCH_MIPS),y)
LINUX_ARCH := mips
@@ -150,5 +150,12 @@ else
GCC_WITH_FLOAT := --with-float=hard
endif
+#Hard or soft floating point
+ifeq ($(CONFIG_EMBTK_SOFTFLOAT),y)
+EGLIBC_FLOAT_TYPE := --with-fp=no
+else
+EGLIBC_FLOAT_TYPE := --with-fp=yes
+endif
+
endif