buildsystem: move ECL_IEEE_FP define to config.h

This commit is contained in:
Daniel Kochmański 2016-10-08 10:08:47 +02:00
parent 988e4755f4
commit 473bcd6572
3 changed files with 5 additions and 5 deletions

View file

@ -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 $@ ; \

View file

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

View file

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