[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Anyone have a linux a.out binary of the most recent CLISP?
>>>>> "John" == John Wiseman <wiseman@cs.uchicago.edu> writes:
John> Unfortunately, when I run make, ld complains "malformed input
John> file (not rel or archive) base/lisp.a()". Is my gcc 2.5.8 too
John> old or something?
You might try extracting the archive like:
mkdir obj
cd obj
ar x lisp.a
cd ..
And then either tweaking the makefile to use obj/*.o or do a
ar cr lisp.a obj/*.o
ranlib lisp.a
Otherwise, can you tell me where I can get the source code to the
linker and "ar" you have?