From 969341ca86adc8d1b304d92d1350c49105a8e7d4 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Tue, 16 Jan 2024 08:48:34 +0100 Subject: [PATCH] another windows experiment --- Makefile.rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.rules b/Makefile.rules index 556b1888a1..352aa22b8f 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -492,7 +492,7 @@ bin/$(GAPARCH)/gap.dll: libgap.dll # build rule for the main gap executable gap$(EXEEXT): libgap.dll cnf/GAP-LDFLAGS cnf/GAP-LIBS cnf/GAP-OBJS build/obj/src/main.c.o - $(QUIET_LINK)$(LINK) $(GAP_LDFLAGS) -Wl,-rpath,$(abs_builddir) -Wl,--export-all-symbols build/obj/src/main.c.o $(GAP_LIBS) libgap.dll.a -o $@ + $(QUIET_LINK)$(LINK) $(GAP_LDFLAGS) -Wl,--export-all-symbols build/obj/src/main.c.o $(GAP_LIBS) -L${abs_builddir} -lgap -o $@ @( if which peflags > /dev/null ; then peflags --cygwin-heap=2048 gap$(EXEEXT) ; fi ) else