Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
cmucl
cmucl
Commits
b219722a
Commit
b219722a
authored
Feb 18, 2020
by
Raymond Toy
Browse files
Merge branch 'rtoy-issue-79-autoload-asdf' into 'master'
Fix
#79
: Autoload ASDF in REQUIRE Closes
#79
See merge request
!46
parents
00a914c9
b18f00f2
Pipeline
#1270
passed with stage
in 9 minutes and 15 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/code/module.lisp
View file @
b219722a
...
...
@@ -102,6 +102,11 @@
\"contrib-games-feebs\", \"contrib-hist\", \"contrib-psgraph\",
\"contrib-ops\", \"contrib-embedded-c\", \"contrib-sprof\", and
\"contrib-packed-sse2\". "
;; First, load asdf if it's not already loaded. This is needed to
;; load easily the contribs that use asdf. There are no contribs
;; that use defsystem, so we won't autoload defsystem.
(
unless
(
featurep
:asdf
)
(
load
"modules:asdf/asdf"
))
(
let
((
saved-modules
(
copy-list
*modules*
))
(
module-name
(
module-name-string
module-name
)))
(
unless
(
member
module-name
*modules*
:test
#'
string=
)
...
...
src/general-info/release-21e.md
View file @
b219722a
...
...
@@ -22,12 +22,13 @@ public domain.
*
Building with gcc8 or later doesn't work with the default -O option. Use -O1 instead. This shouldn't really impact overall speed much.
*
Added simple support to compile with clang instead, which works. (Use x86_linux_clang).
*
Feature enhancements
*
Update to ASDF 3.3.4
*
Changes
*
Update to ASDF 3.3.4
*
ANSI compliance fixes:
*
Bug fixes:
*
Gitlab tickets:
*
~~#73~~ Update clx from upstream clx
*
~~#79~~ Autoload ASDF when calling
`REQUIRE`
the first time. User's no longer have to explicitly load ASDF anymore.
*
Other changes:
*
Improvements to the PCL implementation of CLOS:
*
Changes to building procedure:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment