RESOLVED FIXED161538
Add basic debugging macros for CMake
https://bugs.webkit.org/show_bug.cgi?id=161538
Summary Add basic debugging macros for CMake
Blaze Burg
Reported 2016-09-02 11:04:49 PDT
No need to go google the magic incantation every time...
Attachments
Fix (1.58 KB, patch)
2016-09-02 11:11 PDT, Blaze Burg
mcatanzaro: review+
mcatanzaro: commit-queue-
Blaze Burg
Comment 1 2016-09-02 11:11:00 PDT
Michael Catanzaro
Comment 2 2016-09-02 12:04:28 PDT
Comment on attachment 287784 [details] Fix View in context: https://bugs.webkit.org/attachment.cgi?id=287784&action=review OK why not? > Source/cmake/WebKitMacros.cmake:379 > + set(CMAKE_VERBOSE_MAKEFILE on) ON (caps, style)
Blaze Burg
Comment 3 2017-02-10 15:16:20 PST
Konstantin Tokarev
Comment 4 2019-06-22 07:14:39 PDT
You should not ever have to enable CMAKE_VERBOSE_MAKEFILE. With Makefile generator, use "make VERBOSE=1" when starting build, and with ninja use "ninja -v" option. This way you get verbose output only when you need it, and don't need to wait until cmake regenerates makefiles. Note that when using ninja, if any command fails you automatically get verbose print-out for it.
Note You need to log in before you can comment on or make changes to this bug.