potion icon indicating copy to clipboard operation
potion copied to clipboard

allow verbose build output

Open ryandesign opened this issue 12 years ago • 3 comments

Building potion produces output like this:

CC core/potion.opic

I want to see the full command that was used to compile the file. This is the usual way that make operates, but your Makefile goes to some lengths to suppress this, and provides no option to turn this suppression off.

Other projects offer the variable V which can be set to 1 to produce the usual verbose output, while setting V to 0 would produce the abbreviated output you're currently producing.

ryandesign avatar Jun 03 '13 20:06 ryandesign

You can see the full command lines with make -n target The point to suppress these verbosity is to increase build-time dramatically.

make VERBOSE=1 or make V=1 is doable, but someone needs to write a patch, and it should not clutter the build system too much, as you in the unreadable LLVM build system.

rurban avatar Jun 04 '13 16:06 rurban

There are a few suggestions here which seem not to be too complicated.

ryandesign avatar Jun 04 '13 23:06 ryandesign

Please see branch V-issue26

rurban avatar Jun 10 '13 15:06 rurban