<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Thu, May 1, 2014 at 2:22 AM, Robert Lytton <span dir="ltr"><<a href="mailto:robert@xmos.com" target="_blank">robert@xmos.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">





<div>
<div style="direction:ltr;font-family:Tahoma;color:#000000;font-size:10pt">Hi,<br>
<br>
I would like to call clang twice, once to preprocess and second time to compile.<br>
The second time clang is called, I would like to pass in the original file name for it to use as the ModuleID.<br>
I tried to use:<br>
   clang -E test.c -o tmp.i<br>
   clang -S -x c tmp.i -o test.s    -Xclang -main-file-name -Xclang test.c   -emit-llvm<br>
<br>
However, the ModuleID is 'tmp.i' rather than that passed in by '-main-file-name'.<br></div></div></blockquote><div><br></div><div>This seems like a bug to me; -main-file-name should be used as the name of the input in all respects other than where we find it on disk. Care to put together a patch to fix this? (I doubt you'll be able to get anyone else to care much about what ends up in ModuleID, so I think you'll need to do the work yourself here...)</div>
<div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div style="direction:ltr;font-family:Tahoma;color:#000000;font-size:10pt">
Same with:<br>
    clang -cc1 -triple x86_64-unknown-linux-gnu -x c tmp.i -o test.s  -main-file-name test.c -emit-llvm<br>
<br>
<br>
I am trying to achieve the same affect as using "-fpreprocessed -dumpbase <file>" with llvm-gcc.<br>
Here it seems the gcc front end fetches the file name from the first line of the preprocessed file.<br>
<br>
Thank you.<span class="HOEnZb"><font color="#888888"><br>
<br>
Robert<br>
<br>
<br>
<br>
<br>
<br>
</font></span></div>
</div>

<br>_______________________________________________<br>
cfe-dev mailing list<br>
<a href="mailto:cfe-dev@cs.uiuc.edu">cfe-dev@cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev</a><br>
<br></blockquote></div><br></div></div>