aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-04-30 13:56:37 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-04-30 13:56:37 +0000
commit7e7117a7df0efad41fa3c9364d69accaff29c04c (patch)
tree4cb2eb699c47177b3bc0a3e942d0b244a379fa07 /Makefile
parentf4436d4daea5aa9dcb8703c6f003954897ae143c (diff)
Merged revisions 23638 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r23638 | kpfleming | 2006-04-30 08:55:59 -0500 (Sun, 30 Apr 2006) | 2 lines 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/trunk@23639 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 f4cba8c07..6c047d69d 100644
--- a/Makefile
+++ b/Makefile
@@ -234,9 +234,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