Keeping two versions of newLISP running at the same time

Started by cormullion, January 25, 2007, 09:59:30 AM

Previous topic - Next topic

cormullion

Basically, is it easy to keep two or more versions of newLISP (eg the production version and the latest development version) running on the same machine easily?

tom

Quote from: "cormullion"Basically, is it easy to keep two or more versions of newLISP (eg the production version and the latest development version) running on the same machine easily?


This may be more simplistic than you are looking for, but why not just rename the binary before installing a new one?  scripts would look like this:



#!/usr/bin/newlisp

(stuff)

;eof



#!/usr/bin/other-newlisp

(stuff)

;eof

cormullion

#2
Hi Tom. Yes, that sort of thing would do, I suppose. I might also try doing clever things with paths and stuff, but the first task is to get two versions installed - I rely on Lutz's easy to use installer program, so I'm not sure yet if its possible.



The idea of course it to be able to try out the new development versions while keeping the current version around for existing programs.