Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to view the commands while making FFmpeg?

When I make ffmpeg, I can see following lines

CC  ffmpeg.o
LD  ffmpeg_g
CP  ffmpeg
STRIP   ffmpeg

What is a quick way to find the commands for CC, LD etc. with as less modification to the Makefile?

like image 558
S B Avatar asked Dec 28 '11 11:12

S B


1 Answers

This should do it:

$ make V=1

Loot at the common.mak file for the magic that does the silencing.

like image 154
holygeek Avatar answered Oct 06 '22 23:10

holygeek