search for: libxlisp

Displaying 3 results from an estimated 3 matches for "libxlisp".

Did you mean: liblist
2002 Oct 12
0
RXLisp
So far, I had made RXLisp by putting all foo.o from XLISP-STAT in an archive, and linking that into RXLisp.so. I have gotten somewhat further in using dynamic libraries. Here is what I now do. in XLS 1. Copy xlisp modifications from RXLisp 2. configure --host=powerpc-apple-darwin6.2 3. make libxlisp.so CC="gcc -fno-common -L/sw/lib -I/sw/include" 4. gcc -dynamiclib -flat_namespace -undefined suppress \\ -install_name /usr/local/lib/libxlisp.dylib -o libxlisp.dylib *.o \\ -L/usr/X11R6/lib -lX11 -L/sw/lib -ldl -lm 5. Copy libxlisp.dylib to /usr/local/lib In RXLisp/src 1 ma...
2002 Aug 22
1
RXLisp
...9;s earlier message on RXLisp. I managed to build a working version of RXLisp for OS X, by some unabashed and rather uninformed hacking. I compiled XLISP-STAT using the gcc flags -fno-common and --no-cpp-precomp (not sure if they are necessary or not, they are part of an older hack). I "make libxlisp.so", using Duncan's replacement for the three XLS files (I am not sure if these are necessary with my build strategy, probably not). I do not really make libxlisp.so, because there is no -shared flag for the static linker in OS X. I just leave the XLS directory with a broken link and...
2003 Nov 19
1
Installing RXlisp
...kage. Then, as root, and from /root/ diretory I type the following commands: > tar zxvf xlispstat-3-52-18.tar.gz > tar xzvf RXLisp_0.3-1.tar.gz > cd RXLisp/xlisp/ > export XLISP_SRC_DIR=/root/xlispstat-3-52-18 > ./install The compilation was OK, and the file /root/xlispstat-3-52-18/libxlisp.so was created. Then > cd > R CMD INSTALL --configure-args='--with-build-xlisp-dll' RXLisp OK this as well, except for a warning on a .Rd file. > cp xlispstat-3-52-18/libxlisp.so /usr/lib > /sbin/ldconfig > R ----------------------------------------------------------------...