Hi,
I installed Version 5.2.3.319 out of GetIt inside C++Builder 10.4.2.
But the setting Split DWARF isn't executed by TC, so there is no DWO-file generated.
With msbuild all works fine.
I looked at my Targets-file and there are the lines of objcopy and SplitDWARF. So why are the files not generated by TC?
Best regards
Thorsten
Split DWARF is not used by TwineCompile
Re: Split DWARF is not used by TwineCompile
I'm assuming that you're using the 64-bit compiler, correct? Split DWARF is only available there.
Can you open the TCTargets104.targets file, locate the <OBJCOPY command, and put the following line just above it (below the existing <Message>):
Then run a build and see what that message emits into the Console Output.
Can you open the TCTargets104.targets file, locate the <OBJCOPY command, and put the following line just above it (below the existing <Message>):
Code: Select all
<Message Text="OBJCOPY Condition $(USING_CLANG) And '$(BCC_UseSplitDWARF)'=='true' And '@(BCC_ObjFiles)'!='' And '$(TC_HasFiles)'=='True' And '$(TCCompiledFileCount)'!='0'" />
Jon