j
: Next unread message k
: Previous unread message j a
: Jump to all threads
j l
: Jump to MailingList overview
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
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.