Keeping two versions of newLISP running at the same time
-
- Posts: 2038
- Joined: Tue Nov 29, 2005 8:28 pm
- Location: latiitude 50N longitude 3W
- Contact:
Keeping two versions of newLISP running at the same time
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?
Re: Keeping two versions of newLISP running at the same time
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:cormullion wrote: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?
#!/usr/bin/newlisp
(stuff)
;eof
#!/usr/bin/other-newlisp
(stuff)
;eof
-
- Posts: 2038
- Joined: Tue Nov 29, 2005 8:28 pm
- Location: latiitude 50N longitude 3W
- Contact:
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.
The idea of course it to be able to try out the new development versions while keeping the current version around for existing programs.