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

跟風遠走 提交于 2020-01-04 01:55:08

问题


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.


回答1:


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




回答2:


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

./configure --disable-silent-rules

to get the longer rules.



来源:https://stackoverflow.com/questions/3793817/how-to-get-complete-linking-command-instead-of-just-ccld-how-to-disable-silent

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!