Skip to content
Snippets Groups Projects
  1. Nov 03, 2022
  2. Nov 02, 2022
  3. Nov 01, 2022
    • Raymond Toy's avatar
      Update release-21e.md with closed issues. · d5f1aa5e
      Raymond Toy authored
      d5f1aa5e
    • Raymond Toy's avatar
      Change :iso-8859-1 to :iso8859-1 in find-encoding · 88f6852f
      Raymond Toy authored
      While there's an alias for `:iso-8859-1`, it's safer to use
      `:iso8859-1` which is builtin.  Using `:iso-8859-1` requires the alias
      database to be loaded, which isn't (currently) guaranteed when
      `find-encoding` is called.  Thus use the builtin name instead.
      Besides, `:iso8859-1` is used in other places in "intl.lisp".
      
      (This is hard to test, but I noticed it when running
      ```
      LANG=ko_KR.utf8 lisp
      ```
      on the branch `issue-139-add-alias-local-external-format`.)
      88f6852f
  4. Oct 31, 2022
  5. Oct 30, 2022
  6. Oct 17, 2022
  7. Oct 16, 2022
  8. Oct 15, 2022
  9. Aug 24, 2022
  10. Aug 23, 2022
  11. Aug 14, 2022
  12. Aug 08, 2022
  13. Jun 26, 2022
  14. Dec 16, 2021
  15. Sep 22, 2021
  16. Sep 20, 2021
  17. Aug 11, 2021
    • Raymond Toy's avatar
      Include debug symbols in motifd · a2dfe20d
      Raymond Toy authored
      Add -g flag so that debug symbols are included in motifd.  I don't
      think there's really any reason not to do this, and makes debugging
      motifd releases easier.
      a2dfe20d
  18. Jul 06, 2021
  19. May 31, 2021
  20. May 08, 2021
  21. May 07, 2021
  22. Apr 09, 2021
  23. Feb 13, 2021
    • Raymond Toy's avatar
      Fix #103: Remove random-mt19937-update · b6a38aa0
      Raymond Toy authored
      We don't use the MT19937 RNG anymore, so we can remove this assembly
      routine.  But since the code still exists for mt19937, just use
      reader-conditionals to disable this.
      b6a38aa0
  24. Feb 05, 2021
    • Raymond Toy's avatar
      Fix #101: Add -ftrapping-math to clang compiler options · 8f18e12c
      Raymond Toy authored
      Because lisp runs with FP traps enabled, we want the C code to honor
      that.  Hence add -ftrapping-math.
      
      Also cleaned up the options, replacing -march=pentium4 and
      -mtune=generic with just -mtune=pentiume4.  Replace -mfpmath=sse (not
      sure what that does) with -msse2.
      
      Finally, update CI to do a clang build so we can verify this actually
      works.
      8f18e12c
  25. Jan 30, 2021
  26. Jan 15, 2021
    • Raymond Toy's avatar
      Minor tweak to put use the right EI_OSABI value · ef9fc1bc
      Raymond Toy authored
      Previously, the EI_OSABI value was either ELFOSAB_SOLARIS for solaris
      or ELFOSABI_FREEBSD for everything else.  Let's update this to include
      NetBSD and Linux.  Unlikely we'll ever support other things like
      HP-UX, AIX, IRIX, Tru64, etc.
      
      The value currently doesn't seem matter, but it seems nice to get it
      right.
      ef9fc1bc
  27. Jan 13, 2021
Loading