How to get complete linking command instead of just CCLD / How to disable silent rules in make file

StackOverflow https://stackoverflow.com/questions/3793817

  •  05-10-2019
  •  | 
  •  

Question

I am currently building an app and getting error in linking, here is a command,

CCLD   Programs/GtkBonker

Now I want see the Complete linking Command, Any help is appreciated.

PS.
I am using GNU Build System with c++ programming language, with Ubuntu 10.04.

Was it helpful?

Solution

If you want to see full commands or say want to disable silent rules in webkit,

There are two ways, you can choose the one which suites your scenario

1).you need to run make command with argument V=1,

like this.

make V=1

2). pass --disable-silent-rules in configure as an argument.

like this

configure --disable-silent-rules

OTHER TIPS

If it uses autoconf, it should be something along the lines of:

./configure --disable-silent-rules

to get the longer rules.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top