aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-04-30 13:55:59 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-04-30 13:55:59 +0000
commitc14fd145b7cdbcb88d91b52f567bb0faabc86162 (patch)
treee65e7ac4d519716a85741403c1049cb9f0b06ddb /Makefile
parent9982bca20527c7ab4fa8dc0bbddc8c10ed411956 (diff)
let the compiler determine whether hardware or software floating point should be used (like we do in the editline subdirectory)
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@23638 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 7286790dd..073845bf7 100644
--- a/Makefile
+++ b/Makefile
@@ -201,9 +201,9 @@ ifeq ($(OSARCH),Linux)
OPTIONS+=-fsigned-char -mcpu=ep9312
else
ifeq ($(SUB_PROC),xscale)
- OPTIONS+=-fsigned-char -msoft-float -mcpu=xscale
+ OPTIONS+=-fsigned-char -mcpu=xscale
else
- OPTIONS+=-fsigned-char -msoft-float
+ OPTIONS+=-fsigned-char
endif
endif
endif