Skip to content
Snippets Groups Projects
  1. Sep 03, 2017
  2. Aug 31, 2017
    • Raymond Toy's avatar
      Fix compiler warning about else · 3b4f3977
      Raymond Toy authored
      Add braces around the else clause that's indented as if it were part
      of the else clause.  Inspection of the algorithm indicates that this
      is probably the intended code and in this case doesn't change what
      gets executed because the following statements would have been anyway.
      
      Also verified a few random values that `(asin x)` and `(asin (float x
      1w0))` produce the same values.  Only need to test 2^-27 <= x < 0.5.
      3b4f3977
  3. Aug 29, 2017
    • Raymond Toy's avatar
      Merge branch 'rtoy-fix-40-map-heap-higher' into 'master' · dbf7c0af
      Raymond Toy authored
      Fix #40: Move start of heap space higher
      
      Closes #40
      
      See merge request !21
      dbf7c0af
    • Raymond Toy's avatar
      Rename to boot-2017-04-1.lisp · aba0bc5c
      Raymond Toy authored
      aba0bc5c
    • Raymond Toy's avatar
      Add handler-bind to auto restart · 48f8ebb9
      Raymond Toy authored
      Changing defconstant's signal an error.  Add a handler-bind to restart
      and continue with the changed values.
      48f8ebb9
    • Raymond Toy's avatar
      Fix #40: Move start of heap space higher · c40b7a6b
      Raymond Toy authored
      This is a workaround for issue #40.  By moving the start of the heap
      to a higher address, we can still run on older systems (albeit with
      reduced max heap size), and run on newer systesm where the C code is
      now mapped at or overlapping the (old) heap start.  Arbitrarily choose
      0x60000000 as a compromise.
      
      This also requires moving the foreign linkage start to a different
      address because the old address overlaps the new C area.
      
      Ideally, we could fix this if we could map the heap wherever the OS
      wants to put it, but we're not there yet.
      
      Use boot-2017-04.lisp to bootstrap this change from the 2017-04
      snapshot.
      c40b7a6b
  4. Aug 27, 2017
    • Raymond Toy's avatar
      Print more info for dynamic space lossage · 2830e140
      Raymond Toy authored
      If we get dynamic space lossage, print out the actual address and the
      expected addresses for the dynamic space so we can see what happened.
      This is really useful if you change the dynamic space address but
      didn't update everything correctly.
      2830e140
  5. Apr 08, 2017
  6. Apr 07, 2017
  7. Mar 25, 2017
  8. Mar 24, 2017
  9. Mar 23, 2017
  10. Mar 22, 2017
  11. Mar 05, 2017
  12. Jan 29, 2017
  13. Jan 12, 2017
  14. Jan 08, 2017
  15. Jan 06, 2017
  16. Dec 27, 2016
    • Raymond Toy's avatar
      Use the default version if possible · f6a7beae
      Raymond Toy authored
      If -V isn't given, try to use the default, if possible.
      f6a7beae
    • Raymond Toy's avatar
      Make sure version is specified. · 54eceec9
      Raymond Toy authored
      The version must either be computed using the defaults or must be
      given by the -V option.  Otherwise make-main-dist doesn't know what to
      do without a version.
      54eceec9
    • Raymond Toy's avatar
      Replace version arch os args with switches · 96739d95
      Raymond Toy authored
      The positional version, arch, and os args are now commandline
      switches.  This allows the user to specify arch and os names, for
      example, without specifying a version.  This allows the version to be
      defaulted.  Previously, the version had to be specified if arch or os
      were desired.  
      
      The original default values are used if these options aren't given.
      96739d95
  17. Dec 23, 2016
  18. Dec 17, 2016
  19. Dec 11, 2016
Loading