Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

allow verbose build output #26

Open
ryandesign opened this issue Jun 3, 2013 · 3 comments
Open

allow verbose build output #26

ryandesign opened this issue Jun 3, 2013 · 3 comments

Comments

@ryandesign
Copy link

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.

@rurban
Copy link
Member

rurban commented Jun 4, 2013

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.

@ryandesign
Copy link
Author

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

@rurban
Copy link
Member

rurban commented Jun 10, 2013

Please see branch V-issue26

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants