I'm a new user of CL. I am using the latest weekly build 9.1.6. I found an interesting thing when building my project that the commandline always has @"PROJECTNAME.TXT" in it, like this:
C:/Programs/gnu/mingw64/bin/g++.exe -o ./bin/Debug/test.exe @"test.txt" -L. -static-libstdc++ -static-libgcc -municode
And I don't want this file as it is not useful to me at all. Is there an option for me to disable it?
How to disable generation of PROJECTNAME.TXT when building?
-
- CodeLite Enthusiast
- Posts: 17
- Joined: Mon Apr 11, 2016 5:33 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: How to disable generation of PROJECTNAME.TXT when buildi
settings->build settings->YOUR COMPILER->Advanced->Pass object list to the linker via file
Eran
Eran
Make sure you have read the HOW TO POST thread
-
- CodeLite Enthusiast
- Posts: 17
- Joined: Mon Apr 11, 2016 5:33 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: How to disable generation of PROJECTNAME.TXT when buildi
Ah! At first, I thought it solved my problem because I don't see @test.txt included on commandline. Then I deleted test.txt and built test project. And alas! I found test.txt was generated again.eranif wrote:settings->build settings->YOUR COMPILER->Advanced->Pass object list to the linker via file
Eran
Anyway, I have created a ticket on this problem, see https://github.com/eranif/codelite/issues/1277.