Ralf,

I just built FriCAS and the Aldor interface from the most recent source:

wsp...@debian:~$ svn info ~/fricas-src
Path: /home/wspage/fricas-src
URL: https://fricas.svn.sourceforge.net/svnroot/fricas/trunk
Repository Root: https://fricas.svn.sourceforge.net/svnroot/fricas
Repository UUID: b0c55286-4f34-0410-a049-a1e7e93b0762
Revision: 675
Node Kind: directory
Schedule: normal
Last Changed Author: whebisch
Last Changed Rev: 675
Last Changed Date: 2009-10-02 12:41:58 -0400 (Fri, 02 Oct 2009)

on my Debian 5.0 system using sbcl:

wsp...@debian:~$ sbcl --version
SBCL 1.0.30

and

wsp...@debian:~$ aldor -version
Aldor version 1.1.0 for LINUX(glibc-unknown)


The build completed without errors and I can run other simple test
programs but the following common test fails:

p...@billpage:~$ fricas -nox
Checking for foreign routines
AXIOM="/usr/local/lib/fricas/target/x86_64-unknown-linux"
spad-lib="/usr/local/lib/fricas/target/x86_64-unknown-linux/lib/libspad.so"
foreign routines found
openServer result 0
                 FriCAS (AXIOM fork) Computer Algebra System
                         Version: FriCAS 2009-10-10
             Timestamp: Wednesday October 14, 2009 at 18:57:56
-----------------------------------------------------------------------------
   Issue )copyright to view copyright notices.
   Issue )summary for a summary of useful system commands.
   Issue )quit to leave FriCAS and return to shell.
-----------------------------------------------------------------------------

(1) ->
(1) -> )sys cat sieve.as
# include "axiom.as"

import from Boolean, Integer, NonNegativeInteger;

sieve(n: Integer): Integer  == {
        isprime: OneDimensionalArray Boolean :=
new(n::NonNegativeInteger, true);

        np:Integer := 0;
        for p in 2..n | isprime p repeat {
                np := np + 1;
                for i in (p+p)..n by p repeat isprime i := false;
        }
        np
}


(1) -> )co sieve.as
   Compiling FriCAS source code from file /home/page/sieve.as using
      AXIOM-XL compiler and options
-O -Fasy -Fao -Flsp -laxiom -Mno-ALDOR_W_WillObsolete -DAxiom -Y
$AXIOM/algebra -I $AXIOM/algebra
      Use the system command )set compiler args to change these
      options.
   Compiling Lisp source code from file ./sieve.lsp
   Issuing )library command for sieve
   Reading /home/page/sieve.asy
(1) -> sieve(10)
Looking in OneDimensionalArray(Boolean()) for new with code 1050701442

   >> System error:
   The function FOAM-USER::|fiRaiseException| is undefined.

(1) ->

----

Any ideas what might be wrong? Are you able to reproduce this problem?

Regards,
Bill Page.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"FriCAS - computer algebra system" group.
To post to this group, send email to fricas-devel@googlegroups.com
To unsubscribe from this group, send email to 
fricas-devel+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/fricas-devel?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to