mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-03-15 09:20:23 -07:00
buildsystem: move ECL_IEEE_FP define to config.h
This commit is contained in:
parent
988e4755f4
commit
473bcd6572
3 changed files with 5 additions and 5 deletions
|
|
@ -84,13 +84,12 @@ all: $(DPP) ../libeclmin.a ../cinit.o
|
|||
.d.o: $(DPP)
|
||||
if test -f ../CROSS-DPP ; then ../CROSS-DPP $< $@.c ; else $(DPP) $< $@.c ; fi
|
||||
$(CC) -DECLDIR="\"@ecldir@\"" $(CFLAGS) -o $@ $@.c
|
||||
.c.o:
|
||||
.c.o: $(HFILES)
|
||||
$(CC) -DECLDIR="\"@ecldir@\"" $(CFLAGS) -o $@ $<
|
||||
.d.s: $(HFILES)
|
||||
if test -f ../CROSS-DPP ; then ../CROSS-DPP $< $@.c ; else $(DPP) $< $@.c ; fi
|
||||
$(CC) -DECLDIR="\"@ecldir@\"" $(CFLAGS) -S -o $@ $@.c
|
||||
#.c.o: $(HFILES)
|
||||
# $(CC) -DECLDIR="\"@ecldir@\"" $(CFLAGS) -o $@ $<
|
||||
|
||||
apply_x86.c: $(srcdir)/arch/apply_x86.d $(DPP) $(HFILES)
|
||||
if test -f ../CROSS-DPP ; then \
|
||||
../CROSS-DPP $(srcdir)/arch/apply_x86.d $@ ; \
|
||||
|
|
|
|||
|
|
@ -121,8 +121,6 @@
|
|||
#undef ECL_AVOID_FPE_H
|
||||
/* do we want to have signed zeros */
|
||||
#undef ECL_SIGNED_ZERO
|
||||
/* do we want NaNs and Infs */
|
||||
#undef ECL_IEEE_FP
|
||||
/* has support for large files */
|
||||
#undef HAVE_FSEEKO
|
||||
/* the tzset() function gets the current time zone */
|
||||
|
|
|
|||
|
|
@ -216,6 +216,9 @@ typedef unsigned char ecl_base_char;
|
|||
#undef HAVE_DOUBLE_COMPLEX
|
||||
#undef HAVE_FLOAT_COMPLEX
|
||||
|
||||
/* do we want NaNs and Infs */
|
||||
#undef ECL_IEEE_FP
|
||||
|
||||
/* We can use small, two-words conses, without type information */
|
||||
#undef ECL_SMALL_CONS
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue