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
gendl
gendl
Commits
77c82aa5
Commit
77c82aa5
authored
Oct 29, 2022
by
Dave Cooper
Browse files
do init specifically for runtime application-class
parent
3c7b51e5
Pipeline
#7277
passed with stages
in 5 minutes and 46 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
base/source/genworks.lisp
View file @
77c82aa5
...
...
@@ -471,13 +471,18 @@
(
defclass
gendl:gendl-development-system
(
ccl::lisp-development-system
)
())
(
defclass
gendl:gendl-runtime-system
(
gendl:gendl
-development-system
)
()))
(
ccl::lisp
-development-system
)
()))
#+
ccl
(
defmethod
ccl:toplevel-function
:before
((
a
gendl:gendl-development-system
)
init-file
)
(
declare
(
ignore
init-file
))
(
gendl::initialize
:startup-banner?
t
))
#+
ccl
(
defmethod
ccl:toplevel-function
:before
((
a
gendl:gendl-runtime-system
)
init-file
)
(
declare
(
ignore
init-file
))
(
gendl::initialize
:startup-banner?
t
))
...
...
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