From 1310865c33bb125b5c5a2883eb42551c3d899516 Mon Sep 17 00:00:00 2001 From: Olaf Barthel Date: Thu, 7 Oct 2004 09:20:44 +0000 Subject: [PATCH] - Floating point support code generation was enabled for the entire PowerPC library, and not just for "libm.a". Fixed. git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@14748 87f5fb63-7c3d-0410-a384-fd976d0f7a62 --- library/GNUmakefile.68k | 4 ++-- library/GNUmakefile.os4 | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/library/GNUmakefile.68k b/library/GNUmakefile.68k index 21c3fe4..245f8d5 100644 --- a/library/GNUmakefile.68k +++ b/library/GNUmakefile.68k @@ -1,5 +1,5 @@ # -# $Id: GNUmakefile.68k,v 1.10 2004-09-29 14:17:44 obarthel Exp $ +# $Id: GNUmakefile.68k,v 1.11 2004-10-07 09:20:44 obarthel Exp $ # # :ts=8 # @@ -40,7 +40,7 @@ endif .c.o: @echo "Compiling $<" - @$(CC) -c $(CFLAGS) -DIEEE_FLOATING_POINT_SUPPORT $< + @$(CC) -c $(CFLAGS) $< $(LIBC_OBJS)/%.o : %.c @echo "Compiling $< [$(TYPE):c]" diff --git a/library/GNUmakefile.os4 b/library/GNUmakefile.os4 index 4dccec2..2fe0f71 100644 --- a/library/GNUmakefile.os4 +++ b/library/GNUmakefile.os4 @@ -1,5 +1,5 @@ # -# $Id: GNUmakefile.os4,v 1.10 2004-10-02 15:56:12 obarthel Exp $ +# $Id: GNUmakefile.os4,v 1.11 2004-10-07 09:20:44 obarthel Exp $ # # :ts=8 # @@ -53,7 +53,7 @@ endif %.o : %.c @echo "Compiling $<" - @$(CC) -c $(CFLAGS) -DPPC_FLOATING_POINT_SUPPORT $< + @$(CC) -c $(CFLAGS) $< $(LIBC_OBJS)/%.o : %.c @echo "Compiling $< [$(TYPE):c]" @@ -65,7 +65,7 @@ $(LIBUNIX_OBJS)/%.o : %.c $(LIBM_OBJS)/%.o : %.c @echo "Compiling $< [$(TYPE):m]" - @$(CC) -o $(LIBM_OBJS)/$*.o -c $(CFLAGS) $< + @$(CC) -o $(LIBM_OBJS)/$*.o -c $(CFLAGS) -DPPC_FLOATING_POINT_SUPPORT $< $(LIBSTACK_OBJS)/%.o : %.c @echo "Compiling $< [$(TYPE):stack]" @@ -86,11 +86,11 @@ $(LIBAMIGA_OBJS)/%.o : %.c ############################################################################## ifeq (small_data,$(TYPE)) -CODE_TYPE := -msdata=sysv -DSMALL_DATA -DPPC_FLOATING_POINT_SUPPORT +CODE_TYPE := -msdata=sysv -DSMALL_DATA endif ifeq (large_data,$(TYPE)) -CODE_TYPE := -msdata=data -DPPC_FLOATING_POINT_SUPPORT +CODE_TYPE := -msdata=data endif ifeq (large_data_softfloat, $(TYPE))