gcc with parameters “-S -save-temps” puts intermediate files in current directory

老子叫甜甜 提交于 2020-01-01 04:19:32

问题


The parameters -S -save-temps work fine, as long as i don't use them on files with the same name.

Think of the following situation: I have a project with a main directory and a subdirectory with the name subDir and in both of the directories are files placed with the name file.c. If I now call gcc -S -save-temps file.cpp subDir/file.c only one intermediate file with the name file.i will be generated.

That is the expected behaviour, as the man file of gcc tells me, that the intermediate files will always be placed in the current path, when using -save-temps.

My problem is, that I'm working on projects I don't know in advance. It could very well be, that someone constructed the above mentioned example in his Makefiles. In that case I would be stuck, because I need both intermediate files.

A few words to the system I'm constructing (for better understanding): My tool uses make --just-print to collect the calls, a make file of a project invokes. I scan these calls for compiler calls and add the -save-temps and -S options. The purpose is to get every preprocessed file, that is used in the process of compiling the project.

Do you have any ideas, how I'm able to get every preprocessed file, even if the above mentioned example should appear?


回答1:


There's no problem with file.cpp / file.c in different directories. GCC will create a *.ii and a *.i depending on the files' extension.

If they both have c||cpp you can use -E and receive only one *.i where you can search for the pragma # 1 "<FILE_PATH>" and extract it via a script.




回答2:


In gcc 4.5 you can use the option "-save-temps=obj" when using the -o option. This saves the intermediate files in the same directory as the output file, which can help prevent issues when you have the same filename using different source and output directories.

gcc -save-temps=obj -c dir1/foo.c -o dir1/foo.o
gcc -save-temps=obj -c dir2/foo.c -o dir2/foo.o

The intermediate files will be saved as dir1/foo.* and dir2/foo.*



来源:https://stackoverflow.com/questions/2165079/gcc-with-parameters-s-save-temps-puts-intermediate-files-in-current-director

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