aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Hoelz <rob@hoelz.ro>2012-12-20 23:34:09 +0100
committerRob Hoelz <rob@hoelz.ro>2012-12-29 19:50:44 +0100
commitb2e6559a64bc16f0fbac1fd93911e61a8c30f4e4 (patch)
treea8764db4dc75e322951ae5f47ba6354ff5b45b5a
parentcd13191486f8528c1206aca0df152d7dcb995a12 (diff)
Set --dynext when building debugger
This requires a fairly new version of NQP
-rw-r--r--tools/build/Makefile.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/build/Makefile.in b/tools/build/Makefile.in
index 835218b..fcc6987 100644
--- a/tools/build/Makefile.in
+++ b/tools/build/Makefile.in
@@ -88,9 +88,10 @@ perl6-debug: $(RD_EXE)
$(RD_EXE): modules-install
$(NQP_EXE) --vmlibs=perl6_group,perl6_ops --target=pir \
+ --dynext=$(DESTDIR)$(PARROT_LIB_DIR)/dynext/ \
--module-path=$(DESTDIR)$(PARROT_LIB_DIR)/languages/nqp/lib \
--output=$(RD_PIR) $(RD_DIR)/bin/perl6-debug.nqp
- $(PARROT_EXE) -o $(RD_PBC) $(RD_PIR)
+ $(PARROT_EXE) --dynext $(DESTDIR)$(PARROT_LIB_DIR)/dynext/ -o $(RD_PBC) $(RD_PIR)
$(PBC_TO_EXE) $(RD_PBC)
$(CHMOD) 755 $(RD_EXE)