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 06983b797e5561cc5cee89f03a4f5c2b2ab1d285
parent 9bcdd06be946bdfecca88018579d3fad3d04ce9f
Author: Alexander Burger <abu@software-lab.de>
Date:   Thu, 24 Mar 2011 15:33:06 +0100

Added SunOS
Diffstat:
Mlib/native.l | 12++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/lib/native.l b/lib/native.l @@ -1,4 +1,4 @@ -# 22jul10abu +# 24mar11abu # (c) Software Lab. Alexander Burger (de gcc (Nm L . Lst) @@ -7,7 +7,15 @@ (("Linux" "FreeBSD") (quote (apply call L 'gcc "-o" (tmp Nm) - "-fPIC" "-shared" "-export-dynamic" + "-fPIC" "-m64" "-shared" "-export-dynamic" + "-O" "-falign-functions" "-fomit-frame-pointer" + "-W" "-Wimplicit" "-Wreturn-type" "-Wunused" "-Wformat" + "-Wuninitialized" "-Wstrict-prototypes" + "-pipe" "-D_GNU_SOURCE" (tmp Nm ".c") ) ) ) + ("SunOS" + (quote + (apply call L 'gcc "-o" (tmp Nm) + "-fPIC" "-m64" "-shared" "-O" "-falign-functions" "-fomit-frame-pointer" "-W" "-Wimplicit" "-Wreturn-type" "-Wunused" "-Wformat" "-Wuninitialized" "-Wstrict-prototypes"