Skip to content

Commit

Permalink
add support/*.h to flisp build dependencies. fixes #29903 (#29905)
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffBezanson authored Nov 8, 2018
1 parent 1be7fa5 commit 5922b5e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/flisp/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,12 @@ LIBTARGET := lib$(NAME)
SRCS := flisp.c builtins.c string.c equalhash.c table.c iostream.c \
julia_extensions.c

HEADERS := $(wildcard *.h) $(LIBUV_INC)/uv.h
LLTDIR := ../support

HEADERS := $(wildcard *.h) $(LIBUV_INC)/uv.h $(wildcard $(LLTDIR)/*.h)

OBJS := $(SRCS:%.c=$(BUILDDIR)/%.o)
DOBJS := $(SRCS:%.c=$(BUILDDIR)/%.dbg.obj)
LLTDIR := ../support
LLT_release := $(BUILDDIR)/$(LLTDIR)/libsupport.a
LLT_debug := $(BUILDDIR)/$(LLTDIR)/libsupport-debug.a
LIBFILES_release := $(LLT_release) $(LIBUV) $(LIBUTF8PROC)
Expand Down

1 comment on commit 5922b5e

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Executing the daily benchmark build, I will reply here when finished:

@nanosoldier runbenchmarks(ALL, isdaily = true)

Please sign in to comment.