- Aug 17, 2007
-
-
rtoy authored
o Let's just return all of the declarations we know of, instead of removing some, in DECLARATION-INFORMATION. o Add the known set of CL (and CMUCL) declarations to the list of declarations that are returned in DECLARATIONS. o Add support for AUGMENT-ENVIRONMENT. code/exports.lisp: o Export AUGMENT-ENVIRONMENT from EXT package. o Import AUGMENT-ENVIRONMENT into C package.
-
rtoy authored
-
rtoy authored
- Aug 15, 2007
-
-
rtoy authored
-
- Aug 14, 2007
-
-
fgilham authored
-
rtoy authored
appears to be created successfully, and you can do things, but it is not usable. lisp/elf.h: o Set C_COMPILER to either "cc" or "gcc". We use gcc everywhere, except if the C compiler is Sun C on sparc. lisp/elf.c: o Print out C_COMPILER as the first arg to the linker script. tools/linker.sh: o Rearrange code so test for number of args is done first. o Look at the first arg to determine the C compiler used. If gcc, use the original code. Add new code to support Sun C.
-
- Aug 08, 2007
- Aug 05, 2007
-
-
fgilham authored
-
- Aug 04, 2007
-
-
fgilham authored
-
- Aug 03, 2007
- Aug 02, 2007
-
-
rtoy authored
verify the right stuff. I think this just means the wherein-only info wasn't verified.
-
rtoy authored
I checked the notes and they all have to do with either boxing or generic operations (usually from FLOOR). This greatly reduces the amount of noise in the compilation logs.
-
rtoy authored
specified in CLtL2 are implemented yet. These functions live in the EXTENSIONS package. code/env-access.lisp: o The implementation. (Based on code from SBCL) code/exports.lisp: o Export the symbols from the EXTENSIONS package. o Import them into the C package. tools/worldcom.lisp: o Compile env-access.lisp; tools/worldload.lisp: o Load env-access.
-
rtoy authored
rid of a build warning.
-
- Aug 01, 2007
- Jul 31, 2007
- Jul 30, 2007
- Jul 26, 2007
-
-
rtoy authored
chars, because the assembly code declare them as functions. This gets rid of a linker warning about mismatched types. o Fix a badly indented while loop in free_oldspace. Gnu indent indents it nicely now.
-
- Jul 25, 2007
-
-
rtoy authored
-
rtoy authored
it's really a 32-bit address.
-
fgilham authored
-
fgilham authored
-
cshapiro authored
sigset_t is different from the one used in the Linux kernel. This means that we cannot make assignments of sigset_t objects without corrupting memory. To work around this problem we update uc_sigmask differently on Linux than on other systems. Also, remove x87 control word updates since the x87 is setup correctly inside call_into_lisp.
-
fgilham authored
-
- Jul 24, 2007
-
-
rtoy authored
-
rtoy authored
created and will run, but you can't load new files. Still needs work. src/exec-init.c: o New file that defines builtin_image_flag and initial_function_addr, instead of being defined in lisp.c code/sunos-os.lisp: o Register the :executable feature if needed. lisp/GNUmakefile: o Add exec-init.c to list of src files. o Remove exec-init.o from lisp.a when building on Solaris. lisp/elf.c: o Port the elf code to Solaris. - Basically set up the correct values for the elf header and sections. - The ELF core sections on Solaris don't have valid addresses so we explicitly set them when mapping the core sections. lisp/elf.h o Use SOLARIS instead of sparc. lisp/lisp.c: o builtin_image_flag and initial_function_addr moved to exec-init.c. tools/linker.sh: o Support Solaris tools/make-main-dist.sh: o Support Solaris tools/SunOS-cmucl-linker-script: o New file for SunOS executable.
-
- Jul 23, 2007
- Jul 22, 2007
-
-
cshapiro authored
it matches the layout of an mcontext. Also, remove an older FreeBSD sigcontext definition.
-
- Jul 21, 2007
- Jul 20, 2007
-
-
fgilham authored
-