Suggestion for building OpenBIOS
I was building OpenBIOS when I had an idea. What if we had each file that was being compiled displayed in the console. I am sure most people here have seen how QEMU does this when it is being built. It displays the action it is currently doing with the file it is doing the action on. So if it is compiling C source code, you would see CC file.c. This should be what happens when compiling OpenBIOS. It would give the user some idea what is going on. Is this feature something we could implement in OpenBIOS?
Am 04.09.2012 03:47, schrieb Programmingkid:
What if we had each file that was being compiled displayed in the console. I am sure most people here have seen how QEMU does this when it is being built. It displays the action it is currently doing with the file it is doing the action on. So if it is compiling C source code, you would see CC file.c. This should be what happens when compiling OpenBIOS. It would give the user some idea what is going on. Is this feature something we could implement in OpenBIOS?
Have you tried `make build-verbose` or so? It's just not the default. Andreas -- SUSE LINUX Products GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer; HRB 16746 AG Nürnberg
On 04/09/12 02:47, Programmingkid wrote:
I was building OpenBIOS when I had an idea. What if we had each file that was being compiled displayed in the console. I am sure most people here have seen how QEMU does this when it is being built. It displays the action it is currently doing with the file it is doing the action on. So if it is compiling C source code, you would see CC file.c. This should be what happens when compiling OpenBIOS. It would give the user some idea what is going on. Is this feature something we could implement in OpenBIOS?
This feature is actually already there in OpenBIOS - just do "make V=1" to enable verbose output. HTH, Mark.
participants (3)
-
Andreas Färber -
Mark Cave-Ayland -
Programmingkid