-
Notifications
You must be signed in to change notification settings - Fork 18k
cmd/dist: child process prints to log after make.bash has exited #25981
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
Comments
The error is most likely coming from the compiler. I'm pretty sure it's because the call to |
I'm going to work on this issue. |
@ianlancetaylor - Looked into this. The If I add a simple Or maybe I missed something altogether, please do let me know if that is the case. |
Hmmm, this does seem kind of complicated as it seems easy to get into a deadlock situation, in which In some sense code that is running in a goroutine, like |
Cool. We don't even need a new Will send a CL. |
Change https://golang.org/cl/127776 mentions this issue: |
Notice the $ sign appearing in the middle of the output. This indicates that make.bash exited and the shell printed its prompt, but some child process of make.bash is still printing log output. make.bash should wait for its children to exit before exiting itself.
The text was updated successfully, but these errors were encountered: