Hi everyone.
I have the task of porting an embedded C project in Keil uVision from make to gradle. This required to configure my own toolchain for armcc (of type Gcc). I however noticed that the only txt file generated in the build directory is the output.txt. There is no options.txt.
I made a simple test writing a basic C project and compiling it with MinGW and armcc. The former outputs both output.txt and options.txt. The latter however outputs only output.txt.
My question is how does gradle decide whether it should or should not create an options.txt file in the build output. Can I somehow force gradle to generate the options.txt file?
Thanks in advance for your replies!