- Timestamp:
- Mar 14, 2005, 5:51:09 AM (21 years ago)
- Location:
- trunk/src/emx
- Files:
-
- 5 added
- 5 deleted
- 16 edited
-
CompileOne.sh (modified) (1 diff, 1 prop)
-
Makefile.gmk (modified) (1 diff, 1 prop)
-
include/emx/float.h (modified) (1 diff, 1 prop)
-
src/lib/bsd/gdtoa/gdtoa.smak (added)
-
src/lib/bsd/gdtoa/gdtoaimp.h (modified) (5 diffs, 1 prop)
-
src/lib/bsd/gdtoa/glue/_hdtoa.c (modified) (2 diffs, 1 prop)
-
src/lib/bsd/gdtoa/glue/_ldtoa.c (modified) (2 diffs, 1 prop)
-
src/lib/bsd/gdtoa/glue/glue.c (modified) (2 diffs, 1 prop)
-
src/lib/bsd/gdtoa/glue/machdep_ldisQ.c (modified) (1 diff, 1 prop)
-
src/lib/bsd/gdtoa/glue/machdep_ldisd.c (modified) (1 diff, 1 prop)
-
src/lib/bsd/gdtoa/glue/machdep_ldisx.c (modified) (1 diff, 1 prop)
-
src/lib/bsd/gdtoa/strtod.c (modified) (1 diff, 1 prop)
-
src/lib/bsd/gdtoa/strtof.c (modified) (1 diff, 1 prop)
-
src/lib/conv/atod.c (deleted)
-
src/lib/conv/dtoa.c (deleted)
-
src/lib/conv/gcvt.c (modified) (1 diff, 1 prop)
-
src/lib/conv/legacy-atod.c (added)
-
src/lib/conv/legacy-dtoa.c (added)
-
src/lib/conv/strtod.c (deleted)
-
src/lib/conv/strtof.c (deleted)
-
src/lib/conv/strtold.c (deleted)
-
src/lib/fwdstub.asm (added)
-
src/lib/io/_output.c (modified) (4 diffs, 1 prop)
-
src/lib/libc.def (modified) (3 diffs, 1 prop)
-
src/lib/libc.smak (modified) (1 diff, 1 prop)
-
src/lib/libc06b4.def (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/CompileOne.sh
-
Property cvs2svn:cvs-rev
changed from
1.3to1.4
r1870 r1871 10 10 gcc -c -O3 -o $TMP/compileO3.o -fmessage-length=0 -std=gnu99 -Wundef -Wall -Wmissing-prototypes -pedantic -Wno-long-long \ 11 11 -DIN_INNOTEK_LIBC -D_NFILES=20 -DHAVE_CONFIG_H \ 12 -I$SRCDIR -I$ROOTDIR/include -I$ROOTDIR/src/include -I$ OUTDIR/emx -I$ROOTDIR/src/lib/lgpl/include $1 \12 -I$SRCDIR -I$ROOTDIR/include -I$ROOTDIR/src/include -I$OUTDIR/emx -I$ROOTDIR/src/lib/lgpl/include $1 \ 13 13 && gcc -c -O3 -o $TMP/compileLg.o -fmessage-length=0 -std=gnu99 -Wundef -Wall -Wmissing-prototypes -pedantic -Wno-long-long \ 14 14 -DIN_INNOTEK_LIBC -D_NFILES=20 -DHAVE_CONFIG_H -DDEBUG_LOGGING -D__LIBC_STRICT \ 15 -I$SRCDIR -I$ROOTDIR/include -I$ROOTDIR/src/include -I$ OUTDIR/emx -I$ROOTDIR/src/lib/lgpl/include $1 \15 -I$SRCDIR -I$ROOTDIR/include -I$ROOTDIR/src/include -I$OUTDIR/emx -I$ROOTDIR/src/lib/lgpl/include $1 \ 16 16 && echo succesfully built $1 -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/Makefile.gmk
-
Property cvs2svn:cvs-rev
changed from
1.1to1.2
r1870 r1871 97 97 endif 98 98 CFLAGS.INC += -Isrc/include 99 99 100 CFLAGS = -Wall -Wundef -Wmissing-prototypes -mstack-arg-probe $(CFLAGS.INC) $(CFLAGS.$(MODE)) $(CFLAGS.KIND) 100 101 # The additional C compiler flags for different build modes -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/include/emx/float.h
-
Property cvs2svn:cvs-rev
changed from
1.1to1.2
r1870 r1871 26 26 #define DTOA_GCVT 3 27 27 28 const char * __ atod (long double *p_result, const char *string,29 int min_exp, int max_exp, int bias,30 int mant_dig, int decimal_dig,31 int max_10_exp, int min_den_10_exp);28 const char * __atod (long double *p_result, const char *string, 29 int min_exp, int max_exp, int bias, 30 int mant_dig, int decimal_dig, 31 int max_10_exp, int min_den_10_exp); 32 32 33 char *__ dtoa (char *buffer, int *p_exp, long double x, int ndigits,34 int fmt, int dig);33 char *__dtoa (char *buffer, int *p_exp, long double x, int ndigits, 34 int fmt, int dig); 35 35 36 36 void __remove_zeros (char *digits, int keep); -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/gdtoa/gdtoaimp.h
-
Property cvs2svn:cvs-rev
changed from
1.1to1.2
r1870 r1871 178 178 #ifndef GDTOAIMP_H_INCLUDED 179 179 #define GDTOAIMP_H_INCLUDED 180 181 182 180 183 #include "gdtoa.h" 181 184 … … 191 194 192 195 #include "namespace.h" 196 197 198 199 193 200 #include <pthread.h> 201 194 202 #include "un-namespace.h" 195 203 … … 470 478 471 479 #define MULTIPLE_THREADS 480 481 482 483 484 485 486 487 488 489 490 472 491 extern pthread_mutex_t __gdtoa_locks[2]; 473 492 #define ACQUIRE_DTOA_LOCK(n) do { \ … … 479 498 _pthread_mutex_unlock(&__gdtoa_locks[n]); \ 480 499 } while(0) 500 481 501 482 502 #define Kmax 15 … … 631 651 extern int strtodg ANSI((CONST char*, char**, FPI*, Long*, ULong*)); 632 652 653 654 655 656 657 658 659 660 661 633 662 extern int strtoId ANSI((CONST char *, char **, double *, double *)); 634 663 extern int strtoIdd ANSI((CONST char *, char **, double *, double *)); -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/gdtoa/glue/_hdtoa.c
-
Property cvs2svn:cvs-rev
changed from
1.1to1.2
r1870 r1871 28 28 __FBSDID("$FreeBSD: src/lib/libc/gdtoa/_hdtoa.c,v 1.2 2004/01/21 04:51:50 grehan Exp $"); 29 29 30 31 32 30 33 #include <float.h> 31 34 #include <inttypes.h> … … 34 37 #include <stdlib.h> 35 38 #include "fpmath.h" 39 40 41 36 42 #include "gdtoaimp.h" 43 37 44 38 45 /* Strings values used by dtoa() */ -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/gdtoa/glue/_ldtoa.c
-
Property cvs2svn:cvs-rev
changed from
1.1to1.2
r1870 r1871 28 28 __FBSDID("$FreeBSD: src/lib/libc/gdtoa/_ldtoa.c,v 1.2 2004/01/18 07:53:49 das Exp $"); 29 29 30 31 32 30 33 #include <float.h> 31 34 #include <inttypes.h> … … 34 37 #include <stdlib.h> 35 38 #include "fpmath.h" 39 40 41 36 42 #include "gdtoaimp.h" 43 37 44 38 45 /* -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/gdtoa/glue/glue.c
-
Property cvs2svn:cvs-rev
changed from
1.1to1.2
r1870 r1871 6 6 */ 7 7 8 9 10 11 12 13 14 15 8 16 #include <pthread.h> 9 17 … … 12 20 PTHREAD_MUTEX_INITIALIZER 13 21 }; 22 -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/gdtoa/glue/machdep_ldisQ.c
-
Property cvs2svn:cvs-rev
changed from
1.1to1.2
r1870 r1871 34 34 __FBSDID("$FreeBSD: src/lib/libc/gdtoa/machdep_ldisQ.c,v 1.2 2003/04/09 05:58:43 das Exp $"); 35 35 36 37 38 36 39 #include "gdtoaimp.h" 40 37 41 38 42 long double -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/gdtoa/glue/machdep_ldisd.c
-
Property cvs2svn:cvs-rev
changed from
1.1to1.2
r1870 r1871 34 34 __FBSDID("$FreeBSD: src/lib/libc/gdtoa/machdep_ldisd.c,v 1.1 2003/03/12 20:29:58 das Exp $"); 35 35 36 -
Property cvs2svn:cvs-rev
changed from
