From 44c5e823e6a97326be70859d6879bdf8712d25b6 Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Sun, 30 Apr 2006 13:56:37 +0000 Subject: [PATCH] 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: https://origsvn.digium.com/svn/asterisk/trunk@23639 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f4cba8c073..6c047d69df 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