Skip to content

Commit

Permalink
Don't use flisp-debug while building src on Windows
Browse files Browse the repository at this point in the history
flisp-debug.exe ends up linked to libssp-0.dll which is not on the path
or copied into src/support (it is copied into usr/bin, but flisp isn't)

this has been causing make install to fail on Windows since 4603006
  • Loading branch information
tkelman committed May 13, 2015
1 parent 16d7c18 commit 08f4aa0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,11 @@ endif

FLISP_EXECUTABLE_debug = $(BUILDDIR)/flisp/flisp-debug
FLISP_EXECUTABLE_release = $(BUILDDIR)/flisp/flisp
ifeq ($(OS),WINNT)
FLISP_EXECUTABLE = $(FLISP_EXECUTABLE_release)
else
FLISP_EXECUTABLE = $(FLISP_EXECUTABLE_$(JULIA_BUILD_MODE))
endif

default: $(JULIA_BUILD_MODE) # contains either "debug" or "release"
all: debug release
Expand Down

0 comments on commit 08f4aa0

Please sign in to comment.