How do I force make/GCC to show me the commands?

I’m trying to debug a compilation problem, but I cannot seem to get GCC (or maybe it is make??) to show me the actual compiler and linker commands it is executing. Here is the output I am seeing: CCLD libvirt_parthelper libvirt_parthelper-parthelper.o: In function `main’: /root/qemu-build/libvirt-0.9.0/src/storage/parthelper.c:102: undefined reference to `ped_device_get’ /root/qemu-build/libvirt-0.9.0/src/storage/parthelper.c:116: undefined reference to `ped_disk_new’ /root/qemu-build/libvirt-0.9.0/src/storage/parthelper.c:122: … Read more

How do I disable log messages from the Requests library?

By default, the Requests python library writes log messages to the console, along the lines of: Starting new HTTP connection (1): example.com http://example.com:80 “GET / HTTP/1.1” 200 606 I’m usually not interested in these messages, and would like to disable them. What would be the best way to silence those messages or decrease Requests’ verbosity? … Read more