Maneage - Tasks: task #15749, Printing programs that are being...
You are not allowed to post comments on this tracker with your current authentication level.
task #15749: Printing programs that are being built in the middle of build commands
Submitter: | Mohammad Akhlaghi <makhlaghi> | ||
Submitted: | Thu 13 Aug 2020 02:20:31 PM UTC | ||
Should Start On: | Wed 12 Aug 2020 11:00:00 PM UTC | Should be Finished on: | Wed 12 Aug 2020 11:00:00 PM UTC |
Category: | Software | Priority: | 5 - Normal |
Status: | Postponed | Privacy: | Public |
Percent Complete: | 0% | Assigned to: | None |
Open/Closed: | Open | Effort: | 0.00 |
No files currently attached
Depends on the following items: None found
Items that depend on this one: None found
Carbon-Copy List
There are 0 votes so far. Votes easily highlight which items people would like to see resolved in priority, independently of the priority of the item set by tracker managers.
No changes have been made to this item
Currently, when Maneage is being configured, all the outputs of the build process of many programs are printed in the terminal together and it is very hard to see what is being built at every moment. The way I personally work is to open a parallel terminal, go to the project's top directory and run './project --check-config'.
But in some cases (like when building in Docker, or in the Continuous Integration tests of task #15741) this is not possible because we only have one terminal!
While talking with Mohammadreza on task #15741, this solution suddenly occurred to me: we can make a phony target in the two 'basic.mk' and 'high-level.mk's and set that target to call './project --check-config' until the final configuration-completion file is created. This will print the status of the programs that are currently being built in the middle of all the build outputs.
My only worry now is that this will effectively occupy one of the system's threads (and thus slow down the build!). If there was a way that would could run some kind of back-ground job that would activate every N-seconds (without occupying one thread), it would be great!
But anyway, I can't implement right now and it is mostly just cosmetic (we can ultimately search for the final program target files in '.local/version-info' manually), so I thought of leaving this here in case anyone comes up with a solution in the meantime.