mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-03-15 09:20:23 -07:00
Change location of GC headers as seen by the C source code
This commit is contained in:
parent
a4f608d4b2
commit
7914b23b54
3 changed files with 4 additions and 11 deletions
|
|
@ -9,7 +9,8 @@ VPATH = @srcdir@
|
|||
#
|
||||
TRUE_CC = @CC@
|
||||
CC = @CC@
|
||||
CFLAGS = -c -I. -I$(srcdir) -I$(HDIR) -I../h @CPPFLAGS@ @CFLAGS@ @ECL_CFLAGS@ \
|
||||
CFLAGS = -c -I. -I$(srcdir) -I$(srcdir)/gc -I$(HDIR) -I../h @CPPFLAGS@ @CFLAGS@ \
|
||||
@ECL_CFLAGS@ \
|
||||
# -Wall -W -Wfloat-equal -Wundef -Wendif-labels -Wpointer-arith -Wcast-align \
|
||||
# -Wwrite-strings -Wconversion -Wsign-compare -Wmissing-prototypes -Wredundant-decls \
|
||||
# -Wunreachable-code -Winline
|
||||
|
|
|
|||
|
|
@ -62,11 +62,7 @@ typedef unsigned short uint16_t;
|
|||
#include <object.h>
|
||||
#include <stacks.h>
|
||||
#ifdef GBC_BOEHM
|
||||
# ifdef _MSC_VER
|
||||
# include <gc.h>
|
||||
# else
|
||||
# include <gc/gc.h>
|
||||
# endif
|
||||
# include <gc.h>
|
||||
#endif
|
||||
#include <external.h>
|
||||
#include <eval.h>
|
||||
|
|
|
|||
|
|
@ -68,11 +68,7 @@ typedef unsigned short uint16_t;
|
|||
# define _ARGS(x) x
|
||||
#endif
|
||||
#ifdef GBC_BOEHM
|
||||
# ifdef _MSC_VER
|
||||
# include <gc.h>
|
||||
# else
|
||||
# include <gc/gc.h>
|
||||
# endif
|
||||
# include <gc.h>
|
||||
#endif
|
||||
#include <external.h>
|
||||
/*#include "ecl-inl.h"*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue