|
From: Ben H. <bh...@us...> - 2002-01-02 13:20:47
|
Update of /cvsroot/thinlisp/thinlisp-1.0/src
In directory usw-pr-cvs1:/tmp/cvs-serv29068
Modified Files:
INSTALL
Log Message:
Check for -lm adding to LIBS when found in autoconf, might fix linux build.
Index: INSTALL
===================================================================
RCS file: /cvsroot/thinlisp/thinlisp-1.0/src/INSTALL,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** INSTALL 2001/10/22 14:57:10 1.5
--- INSTALL 2002/01/02 13:20:44 1.6
***************
*** 50,55 ****
make -f makefile-linux
! 7. This should have produced an executable "lecho" in the lecho/bin
! directory. You can make your own sytems by copying the boot file in
lecho/lisp into <your-sys>/lisp/boot.lisp, adding your own
functionality, and running similar commands.
--- 50,64 ----
make -f makefile-linux
! or you can use the [experimental] platform independent autoconf
! generated makefiles
!
! cd tl/c; autoconf; ./configure
! cd ../bin; make -f ../c/makefile
! cd ../../lecho/c
! autoconf; ./configure;
! cd ../bin; make -f ../c/makefile
!
! 7. Either of these should have produced an executable "lecho" in the
! lecho/bin directory. You can make your own sytems by copying the boot file in
lecho/lisp into <your-sys>/lisp/boot.lisp, adding your own
functionality, and running similar commands.
|