dect
/
asterisk
Archived
13
0
Fork 0

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
This commit is contained in:
kpfleming 2006-04-30 13:56:37 +00:00
parent f4436d4dae
commit 7e7117a7df
1 changed files with 2 additions and 2 deletions

View File

@ -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