-
Notifications
You must be signed in to change notification settings - Fork 104
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CCL does not exit after evaluation with --batch option #470
Comments
If it's meaningful in any way, For CCL, is adding |
SBCL absolutely exits after loading and evaluating a file with |
If we give it what it's asking for, it does what it's supposed to do:
;) |
Welp, I launched I assume then this is a feature request for a
I meant |
CCL should absolutely have |
According to the documentation,
--batch
makes CCL exit on stdin EOF.Running:
Leads to CCL printing the message correctly and hanging there without exiting until one hits ^D to explicitely send EOF. In this state, using ^C to send SIGINT causes CCL to enter the debugger (really not something expected with
--batch
_).Stracing CCL shows that it is reading the standard input:
I would expect CCL to exit after all forms passed to
--eval
options have been evaluated.Environment: CCL 1.12.2 running on Linux x86_64.
The text was updated successfully, but these errors were encountered: