- Oct 11, 2015
-
-
Raymond Toy authored
Noticed by Joram Schrijver who gave the correct path.
-
Raymond Toy authored
It's really nice to see the exit code of the process when printing out the process structure. Fix a typo too: "tings" -> "things".
-
Raymond Toy authored
obj_run_linker() returns the return code from the call to system(). Exit lisp with this return code to indicate if running the executable linker script worked or not.
-
Raymond Toy authored
* src/lisp/GNUMakefile * Don't add exec-final.o to lisp.a. (But still remove exec-init.o from it.) * src/tools/linker.sh * When linking the executable, need to link exec-final.o too. * bin/make-main-dist.sh * Need to install exec-init.o and exec-final.o. exec-init.o is needed to link a normal lisp; exec-final.o is used for the executable image. * Fix modes on some installed files. exec-init.o, exec-final.o, and lisp.a don't need to be executable.
-
- Oct 04, 2015
-
-
Raymond Toy authored
-
Raymond Toy authored
confusion with the global control_stack_size.
-
Raymond Toy authored
-
Raymond Toy authored
-
Raymond Toy authored
-
Raymond Toy authored
easier.
-
Raymond Toy authored
-
Raymond Toy authored
other platforms.
-
Raymond Toy authored
other platforms.
-
- Oct 03, 2015
-
-
Raymond Toy authored
-
Raymond Toy authored
-
Raymond Toy authored
-
Raymond Toy authored
-
Raymond Toy authored
with binding_stack.
-
Raymond Toy authored
Cast to appropriate pointer types too.
-
Raymond Toy authored
control_stack_start.
-
Raymond Toy authored
control_stack_start.
-
Raymond Toy authored
-
Raymond Toy authored
-
Raymond Toy authored
* Print out some better messages from os_protect * Add make_hole to actually make a hole * make_holes only does the read-only and static spaces. * make_stack_holes handles the binding and control stacks.
-
Raymond Toy authored
-
- Oct 01, 2015
-
-
Raymond Toy authored
-
Raymond Toy authored
-
Raymond Toy authored
Add bootfile for building cmucl with the new version too.
-
- Sep 28, 2015
-
-
Raymond Toy authored
-
- Sep 01, 2015
-
-
Raymond Toy authored
The previous implementation cleared *herald-items* when -quiet was given, but if the init file loaded up items that added to *herald-items*, then the items were still printed. Plus, it seems odd that -quiet actually clears *herald-items*. So, just don't print herald if -quiet is given, but also preserve *herald-items* so that (print-herald) would actually print the actual herald.
-
- Aug 30, 2015
-
-
Raymond Toy authored
-
Raymond Toy authored
-
Raymond Toy authored
-
Raymond Toy authored
Instead of using random integers in the switch statement, use the fdlibm enum values. Also fix a compiler warning that ret might be used uninitialized. Fix this by adding a default case, which should never happen.
-
Raymond Toy authored
Gets rid of compiler warning too.
-
Raymond Toy authored
-
Raymond Toy authored
These are needed for asdf and slime, respectively. These were updated for unix.lisp, but not unix-glibc2.lisp. (Time to merge them into one!!!!)
- Aug 27, 2015
-
-
Raymond Toy authored
Apply patch from Helmut, as is.
-
- Aug 01, 2015
-
-
Raymond Toy authored
o Add declaration for LIST-ELT* that the index is a kerrnel:index. o Clean up ELT to directly call LIST-ELT* instead of having an inlined version. o Fix typo: issue.5 is really issue.4. o Add tests for invalid indices for ELT and (SETF ELT) for both lists and vectors.
-