What are these files: Project.ilc, Project.ild, Project.ilf, Project.ils
Hello there,
I am using XE c++ builder.
What are these files used for? They are in the same directory where the final output (.exe) is.
Is there a way to `remove` them after - let`s say - successful compilation/linking?
0 Tamas11/10/2011 2:46:19 PM
They are Incremental linker files.
Turn off the option in your project Options if you do not want them.
Larry
"Tamas Csabina" wrote in message news:418738@forums.embarcadero.com...
Hello there,
I am using XE c++ builder.
What are these files used for? They are in the same directory where the
final output (.exe) is.
Is there a way to `remove` them after - let`s say - successful
compilation/linking?
0 Larry11/10/2011 4:24:03 PM
Thanks Larry!
Had to do a little research how to `turn them off`.
Had to add /Gn to the Advanced->Additional options filed under the C++ Linker section of Project Options.
For more info about the possible switches for ilink32:
http://docwiki.embarcadero.com/RADStudio/en/ILINK32.EXE,_the_Incremental_Linker#Linker-State_Files
> {quote:title=Larry Griffiths wrote:}{quote}
> They are Incremental linker files.
>
> Turn off the option in your project Options if you do not want them.
>
> Larry
>
>
> "Tamas Csabina" wrote in message news:418738@forums.embarcadero.com...
>
> Hello there,
>
> I am using XE c++ builder.
>
> What are these files used for? They are in the same directory where the
> final output (.exe) is.
>
> Is there a way to `remove` them after - let`s say - successful
> compilation/linking?
0 Tamas11/11/2011 1:16:42 PM
I just go to Project Options/C++ Linker/Disable incremental link and set it
to "true".
"Tamas Csabina" wrote in message news:419047@forums.embarcadero.com...
Thanks Larry!
Had to do a little research how to `turn them off`.
Had to add /Gn to the Advanced->Additional options filed under the C++
Linker section of Project Options.
For more info about the possible switches for ilink32:
http://docwiki.embarcadero.com/RADStudio/en/ILINK32.EXE,_the_Incremental_Linker#Linker-State_Files
> {quote:title=Larry Griffiths wrote:}{quote}
> They are Incremental linker files.
>
> Turn off the option in your project Options if you do not want them.
>
> Larry
>
>
> "Tamas Csabina" wrote in message news:418738@forums.embarcadero.com...
>
> Hello there,
>
> I am using XE c++ builder.
>
> What are these files used for? They are in the same directory where the
> final output (.exe) is.
>
> Is there a way to `remove` them after - let`s say - successful
> compilation/linking?
0 Larry11/11/2011 6:45:45 PM
> {quote:title=Larry Griffiths wrote:}{quote}
> I just go to Project Options/C++ Linker/Disable incremental link and set it
> to "true".
Oh, must have overlooked this... :)