picolisp

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/picolisp.git/
Log | Files | Refs | README | LICENSE

commit 09d2e6e284aea50ce2b815f4218e2cfde9ead0ce
parent 62c77d2bdd4be70891ca2fb7b9bd8ef221489728
Author: Alexander Burger <abu@software-lab.de>
Date:   Fri, 14 Oct 2011 18:51:41 +0200

Add "-Wl,--no-as-needed" to src64/Makefile (broken math functions in Ubuntu64)
Diffstat:
Mersatz/picolisp.jar | 0
Msrc/vers.h | 2+-
Msrc64/Makefile | 4++--
Msrc64/version.l | 4++--
4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/ersatz/picolisp.jar b/ersatz/picolisp.jar Binary files differ. diff --git a/src/vers.h b/src/vers.h @@ -1 +1 @@ -static byte Version[4] = {3,0,8,3}; +static byte Version[4] = {3,0,8,4}; diff --git a/src64/Makefile b/src64/Makefile @@ -1,4 +1,4 @@ -# 09oct11abu +# 14oct11abu # (c) Software Lab. Alexander Burger .SILENT: @@ -72,7 +72,7 @@ picolisp: $(bin)/picolisp $(lib)/ext $(lib)/ht $(bin)/picolisp: $(ARCH).$(SYS).base.o mkdir -p $(bin) $(lib) - gcc -o $(bin)/picolisp $(ARCH).$(SYS).base.o $(LD-MAIN) + gcc -o $(bin)/picolisp $(ARCH).$(SYS).base.o -Wl,--no-as-needed $(LD-MAIN) $(STRIP) $(bin)/picolisp $(lib)/ext: $(ARCH).$(SYS).ext.o diff --git a/src64/version.l b/src64/version.l @@ -1,6 +1,6 @@ -# 11oct11abu +# 14oct11abu # (c) Software Lab. Alexander Burger -(de *Version 3 0 8 3) +(de *Version 3 0 8 4) # vi:et:ts=3:sw=3