On Sat, Feb 25, 2023 at 11:23:15PM +0100, Ralf Hemmecke wrote: > Meanwhile Peter Broadbery has found and corrected a bug in the aldor > compiler. Thank you, Peter! > > https://github.com/aldorlang/aldor/commit/2f5b4896eed78cb37a31a49a51662e98e4462821 > > However, I can no longer compile sieve.as (is attached) with > 68a3e8eee6d1dc20b925fd11220f38f2a033e027, because I get the following error. > So this commit introduces a bug.
I seems that I missed one place that needed updating. Can you try the attached patch. -- Waldek Hebisch -- 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 fricas-devel+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/fricas-devel/20230226005032.ro72muktr35fywgj%40fricas.math.uni.wroc.pl.
--- ../trunk.pp6/src/interp/i-syscmd.boot 2023-02-09 18:55:39.086318123 +0000 +++ i-syscmd.boot 2023-02-25 22:53:17.533870579 +0000 @@ -532,12 +532,12 @@ rc := OBEY command if (rc = 0) and doCompileLisp then - lsp := fnameMake('".", pathnameName args, '"lsp") + lsp := fnameMake('".", pathnameName(path), '"lsp") if fnameReadable?(lsp) then - if not beQuiet then sayKeyedMsg("S2IZ0089", [namestring lsp]) + if not beQuiet then sayKeyedMsg("S2IZ0089", [NAMESTRING(lsp)]) compileFileQuietly(lsp) else - sayKeyedMsg("S2IL0003", [namestring lsp]) + sayKeyedMsg("S2IL0003", [NAMESTRING(lsp)]) if rc = 0 and doLibrary then -- do we need to worry about where the compilation output went?