newLISP Fan Club

Forum => Anything else we might add? => Topic started by: cormullion on January 25, 2007, 09:59:30 AM

Title: Keeping two versions of newLISP running at the same time
Post by: cormullion on January 25, 2007, 09:59:30 AM
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?
Title: Re: Keeping two versions of newLISP running at the same time
Post by: tom on January 25, 2007, 02:45:47 PM
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
Title:
Post by: cormullion on January 26, 2007, 09:21:47 AM
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.