Currently fricas-readline is not installed to ./target/*/bin/.

I find it useful to debug with readline support:

  cd target/x86_64-linux-gnu
  FRICAS=. ./bin/fricas -rl

Because readline's history feature is really convenient when
you need to input the same things over and over again during debugging.

- Qian

--
You received this message because you are subscribed to the Google Groups "FriCAS - 
computer algebra system" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/fricas-devel/92f21094-b30b-4b5f-99b6-1d3670cda7fa%40gmail.com.
diff --git a/src/etc/Makefile.in b/src/etc/Makefile.in
index 35484b1f..a008c9de 100644
--- a/src/etc/Makefile.in
+++ b/src/etc/Makefile.in
@@ -18,6 +18,7 @@ stamp-databases:
 stamp: $(fricas_target_libdir)/summary \
 		$(fricas_target_libdir)/copyright \
 		$(fricas_target_bindir)/fricas \
+		$(fricas_target_bindir)/fricas-readline \
                 $(fricas_target_libdir)/SPADEDIT \
                 $(fricas_target_libdir)/command.list
 	$(STAMP) stamp
@@ -73,6 +74,10 @@ $(fricas_target_bindir)/fricas: $(srcdir)/fricas
 	cp $< $@
 	chmod +x $@
 
+$(fricas_target_bindir)/fricas-readline: $(srcdir)/fricas-readline
+	cp $< $@
+	chmod +x $@
+
 mostlyclean-local:
 	-rm -f stamp stamp-databases stamp-do-databases
 

Reply via email to