Skip to content
Snippets Groups Projects
  1. Sep 01, 2018
  2. Aug 28, 2018
    • Raymond Toy's avatar
      Get rid of FPU_MODE · 9d2590c0
      Raymond Toy authored
      This was used to selecte whether we were building for x87 or sse2, but
      we dropped support for x87 a long while ago.  Remove this var.
      9d2590c0
  3. Aug 25, 2018
    • Raymond Toy's avatar
      Add support for compiling with clang on x86/linux · 82bf2c72
      Raymond Toy authored
      Add `Config.x86_linux_clang` to use clang instead of gcc to build
      cmucl.  update `create-target.sh` so that it sets the motif variant
      correctly when using `Config.x86_linux_clang`
      
      See issue #68.
      
      With this config, Fedora 28 successfully builds cmucl and passes all
      the tests.
      82bf2c72
  4. Aug 23, 2018
  5. Aug 05, 2018
  6. Jul 27, 2018
  7. Jul 22, 2018
  8. Jul 21, 2018
  9. Jul 18, 2018
  10. Jul 16, 2018
  11. Jul 15, 2018
  12. Jul 07, 2018
    • Raymond Toy's avatar
      Use Ubuntu 14.04 · 01fa37d8
      Raymond Toy authored
      Let's see if 14.04 works better. I don't feel like debugging the test
      failure in a VM right now.  And I don't want to set up everything to
      use Fedora (which is what my linux box is running).
      01fa37d8
    • Raymond Toy's avatar
      Use fixed ubuntu image · be073d06
      Raymond Toy authored
      be073d06
  13. Jul 04, 2018
  14. May 12, 2018
  15. Mar 14, 2018
    • Raymond Toy's avatar
      Update manual date to 21c · 3c749f8b
      Raymond Toy authored
      Just change the date on the manual to the date of the 21c release.
      Now that we can create the html pages again with hevea, we can update
      this.
      3c749f8b
  16. Mar 06, 2018
  17. Mar 05, 2018
  18. Mar 03, 2018
  19. Feb 19, 2018
    • Raymond Toy's avatar
      Merge branch 'rtoy-fix-61-62-not-flushable' into 'master' · ac4b9fc8
      Raymond Toy authored
      Complex array accessors are not foldable
      
      Closes #61 and #62
      
      See merge request cmucl/cmucl!38
    • Raymond Toy's avatar
      Complex array accessors are not foldable · e9a598e5
      Raymond Toy authored
      Fixes #61 and #62.
      
      The `ARRAY-HAS-FILL-POINTER-P` and `ARRAY-DISPLACEMENT` functions are
      declared inline and the compiler tries to constant-fold these inlined
      functions operating on simple arrays.
      
      Thus don't allow the compiler to constant-fold calls to
      `%ARRAY-FILL-POINTER-P`.  This is normally protected by a call to
      `ARRAY-HEADER-P`, but when it's inlined, the compiler tries to
      constant-fold `%ARRAY-FILL-POINTER-P` on an array without such a slot.
      
      Likewise `ARRAY-DISPLACEMENT` calls `%ARRAY-DISPLACED-P`,
      `%ARRAY-DATA-VECTOR`, and `%ARRAY-DISPLACEMENT`, and the calls are
      protected by `ARRAY-HEADER-P`. So don't constant-fold these either.
      
      Maybe we could also make CONSTANT-FOLD-CALL be smarter about this?
      
      * src/compiler/generic/objdef.lisp
        * Remove flushable from these ref-trans methods.
      * src/general-info/release-21d.md
        * Update
      * tests/issues.lisp
        * Add tests from the bug reports.
      e9a598e5
  20. Feb 18, 2018
Loading