Skip to content

Commit 08f4aa0

Browse files
committed
Don't use flisp-debug while building src on Windows
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
1 parent 16d7c18 commit 08f4aa0

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/Makefile

+4
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,11 @@ endif
4949

5050
FLISP_EXECUTABLE_debug = $(BUILDDIR)/flisp/flisp-debug
5151
FLISP_EXECUTABLE_release = $(BUILDDIR)/flisp/flisp
52+
ifeq ($(OS),WINNT)
53+
FLISP_EXECUTABLE = $(FLISP_EXECUTABLE_release)
54+
else
5255
FLISP_EXECUTABLE = $(FLISP_EXECUTABLE_$(JULIA_BUILD_MODE))
56+
endif
5357

5458
default: $(JULIA_BUILD_MODE) # contains either "debug" or "release"
5559
all: debug release

0 commit comments

Comments
 (0)