This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
picoLisp-3.1.9.12 $ echo "$(uname -o) $(uname -r) $(uname -m)" | |
Cygwin 1.7.35(0.287/5/3) x86_64 | |
picoLisp-3.1.9.12 $ (cd src64; make) | |
emu.ext.o:emu.ext.c:(.rdata$.refptr.FirstLib[.refptr.FirstLib]+0x0): undefined reference to `FirstLib' | |
emu.ext.o:emu.ext.c:(.rdata$.refptr.Z[.refptr.Z]+0x0): undefined reference to `Z' | |
emu.ext.o:emu.ext.c:(.rdata$.refptr.X[.refptr.X]+0x0): undefined reference to `X' | |
emu.ext.o:emu.ext.c:(.rdata$.refptr.C[.refptr.C]+0x0): undefined reference to `C' | |
emu.ext.o:emu.ext.c:(.rdata$.refptr.Carry[.refptr.Carry]+0x0): undefined reference to `Carry' | |
emu.ext.o:emu.ext.c:(.rdata$.refptr.A[.refptr.A]+0x0): undefined reference to `A' | |
emu.ext.o:emu.ext.c:(.rdata$.refptr.L[.refptr.L]+0x0): undefined reference to `L' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# 29nov10abu | |
# Values for the civilized world. | |
_here="${0%/*}" | |
_cpsep=":" | |
# Values for the barbarian world. | |
# | |
# If on Windows (Cygwin, really), you're probably using a Windows |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# FYI, platform and gcc version. | |
# | |
$ uname -a | |
OpenBSD obsd32.my.domain 5.6 GENERIC#274 i386 | |
$ gcc --version | |
gcc (GCC) 4.2.1 20070719 | |
Copyright (C) 2007 Free Software Foundation, Inc. | |
This is free software; see the source for copying conditions. There is NO |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rick@dunsel:~/builds/picoLisp-3.1.9.12/src $ uname -a | |
OpenBSD dunsel.my.domain 5.6 GENERIC#367 amd64 | |
rick@dunsel:~/builds/picoLisp-3.1.9.12/src $ type -a gcc | |
gcc is /usr/bin/gcc | |
rick@dunsel:~/builds/picoLisp-3.1.9.12/src $ gcc --version | |
gcc (GCC) 4.2.1 20070719 | |
Copyright (C) 2007 Free Software Foundation, Inc. | |
This is free software; see the source for copying conditions. There is NO | |
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; @module Mysql | |
;; @author Jeff Ober <[email protected]>, Kanen Flowers <[email protected]> | |
;; @version 1.05 beta | |
;; @location http://static.artfulcode.net/newlisp/mysql.lsp | |
;; @package http://static.artfulcode.net/newlisp/mysql.qwerty | |
;; @description A new MySQL module to replace the distribution standard module (requires newlisp 10). | |
;; The Mysql module has been written from scratch utilizing some of the more | |
;; recent features of newLisp, such as FOOP and reference returns. One of its | |
;; major design goals was to simplify use as well as broaden the features of | |
;; the standard MySQL module, while at the same time allowing the creation of |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; Two steps to activate newlisp-mode in Emacs (24). | |
;;; | |
;;; 1. First, you should have already obtained and placed newlisp.el | |
;;; (and other files (aka newlisp-mode files)) into a proper | |
;;; directory. I'm going to recommend they get placed in the directory | |
;;; ~/.emacs.d/newlisp-mode. Here's one way to do it. | |
;;; | |
;;; $ cd ~/.emacs.d | |
;;; $ git clone git://github.com/kosh04/newlisp-files.git newlisp-mode | |
;;; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# extract-file-from-sbcl-msi -- If you don't have admin privs on your | |
# Windoze machine but would like to install the SBCL msi (which contains | |
# pre-built Windoze binaries), you can use this script to extract the | |
# files and (original) directory structure. The true pathnames of the | |
# files are encoded by the msi by replacing the path separator '/' with | |
# '_'; hyphens, '-', in filenames are replaced with '.'; and every file | |
# that has a pathname (lives in the subdirectory) has its pathname | |
# additionally encoded by prepending the pathname with 'File_'. The |
NewerOlder