newLISP development release v.10.1.4

Notices and updates
Locked
Lutz
Posts: 5289
Joined: Thu Sep 26, 2002 4:45 pm
Location: Pasadena, California
Contact:

newLISP development release v.10.1.4

Post by Lutz »

• the time offset in the 'now' function was broken and has been fixed.

files and changes notes: http://www.newlisp.org/downloads/development/

ale870
Posts: 297
Joined: Mon Nov 26, 2007 8:01 pm
Location: Italy

Post by ale870 »

Thank you, I will check them at about two weeks (I have a windows installation only at work!)
--

itistoday
Posts: 429
Joined: Sun Dec 02, 2007 5:10 pm
Contact:

Post by itistoday »

I discovered a minor bug that prevents the universal build from installing (from source) on OS X.

The problem is that this line generates a binary called "newlisp-universal" instead of "newlisp":

Code: Select all

make -f makefile_darwin_universal_utf8
And therefore you get this error:

Code: Select all

$ sudo make install
install -d /usr/share/newlisp
install -d /usr/share/newlisp/modules
install -d /usr/share/newlisp/util
install -d /usr/share/doc/newlisp
rm /usr/bin/newlisp
install -m 755  newlisp /usr/bin/newlisp-10.1.4
install: newlisp: No such file or directory
make: [install] Error 71 (ignored)
Get your Objective newLISP groove on.

tom
Posts: 168
Joined: Wed Jul 14, 2004 10:32 pm

Post by tom »

(never mind)

Lutz
Posts: 5289
Joined: Thu Sep 26, 2002 4:45 pm
Location: Pasadena, California
Contact:

Post by Lutz »

binary called "newlisp-universal" instead of "newlisp"
this is on purpose the file "newlisp-universal" is made on 10.4 Tiger then used by a different script to generate packages for ppc and intel, which then get extracted from the universal file.

itistoday
Posts: 429
Joined: Sun Dec 02, 2007 5:10 pm
Contact:

Post by itistoday »

Lutz wrote:
binary called "newlisp-universal" instead of "newlisp"
this is on purpose the file "newlisp-universal" is made on 10.4 Tiger then used by a different script to generate packages for ppc and intel, which then get extracted from the universal file.
Well, do you therefore think one should not be able to install the universal newlisp binary from source..? I can't see why we can't have the best of both worlds. :-)
Get your Objective newLISP groove on.

Locked