开发者

Check what files are compiled during "make"

开发者 https://www.devze.com 2023-03-18 03:37 出处:网络
I am trying to port pulseaudio to Android. I have compiled pulse audio on Ubuntu and it works fine with my build. However, I want to do this on Android and for that I need the list of files that are c

I am trying to port pulseaudio to Android. I have compiled pulse audio on Ubuntu and it works fine with my build. However, I want to do this on Android and for that I need the list of files that are compiled during "make". I have disabled a lot of optional components by passing args to configure.

Is there an easy way to find the list of files that are being com开发者_StackOverflowpiled so that I can use them on Android and discard rest of the files.

I know the hard way to do this using a strace and look for all open calls for .c files, but that obviously is not a good option (especially when the file count is very high).

Thanks,


If you run make -Bn, you should see all the compiled files.

0

精彩评论

暂无评论...
验证码 换一张
取 消