[Prev][Next][Index]
problem with libSage++.a
- To: sage-bugs@cica.indiana.edu
- Subject: problem with libSage++.a
- Date: Thu, 02 Feb 95 20:24:44 -0500
- From: lxm@npac.syr.edu
When trying to compile a simple test program as follows
#include "/home/R8G/lxm/sage++-1.7/lib/include/sage++user.h"
main(){
SgProject P("myp.proj");
for(int i=0; i<P.numberOfFiles();i++) {
printf("file is %s\n", P.fileName(i));
};
}
with the command line:
g++ try.C -L/home/R8G/lxm/sage++-1.7/lib/alpha -lSage++
I got the following message:
ld: /home/R8G/lxm/sage++-1.7/lib/alpha/libSage++.a(________64ELEL_): bad magic
number
collect: /usr/bin/ld returned 4 exit status
Do you have any idea what's going on ? Thanks !