You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to fricas-devel
Commit 9c5656ca "Add Lisp version to FriCAS banner" causes
ECL fails to build FriCAS, because the ECL part of the code
is not modified.
- Qian
diff --git a/src/interp/util.lisp b/src/interp/util.lisp
index 400a2b94..4091e2a4 100644
--- a/src/interp/util.lisp
+++ b/src/interp/util.lisp
@@ -189,7 +189,8 @@ After this function is called the image is clean and
can be saved.
'("util.o")
load-files))
(let ((initforms nil))
- (dolist (el '(|$build_date| |$build_version|
|$createLocalLibDb|))
+ (dolist (el '(|$build_date| |$build_version|
+ |$lisp_id_string| |$createLocalLibDb|))
(if (boundp el)
(push (list 'defparameter el (symbol-value el))
initforms)))
Waldek Hebisch
unread,
Jan 4, 2024, 5:57:13 AM1/4/24
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to fricas...@googlegroups.com
On Thu, Jan 04, 2024 at 06:24:41PM +0800, Qian Yun wrote:
> Commit 9c5656ca "Add Lisp version to FriCAS banner" causes
> ECL fails to build FriCAS, because the ECL part of the code
> is not modified.