Search found 441 matches
- Tue Mar 15, 2022 5:51 pm
- Forum: General
- Topic: The "DWARFVersion" parameter is not supported
- Replies: 15
- Views: 96701
Re: The "DWARFVersion" parameter is not supported
Can you upgrade to 10.3 Update 3? That would resolve the issue.
- Tue Mar 15, 2022 5:17 pm
- Forum: General
- Topic: The "DWARFVersion" parameter is not supported
- Replies: 15
- Views: 96701
Re: The "DWARFVersion" parameter is not supported
What is the exact version of C++Builder that you're using?
- Mon Feb 07, 2022 5:57 pm
- Forum: General
- Topic: TC stability issues
- Replies: 23
- Views: 362247
Re: TC stability issues
There was a minor code fix for an internal IDE function that is not working as expected. So small change, big improvement 

- Fri Feb 04, 2022 2:46 pm
- Forum: General
- Topic: TC stability issues
- Replies: 23
- Views: 362247
Re: TC stability issues
Can you download this file, extract into the TwineCompile Program Files directory and see if it resolves your issue - https://jomitech.com/downloads/TwineCom ... ore110.zip
- Thu Feb 03, 2022 2:48 pm
- Forum: General
- Topic: TC stability issues
- Replies: 23
- Views: 362247
Re: TC stability issues
Just to clarify, is the unresponsive issue directly related to cancelling the build? In other words, you only encounter this issue with you click the Cancel button?
- Thu Feb 03, 2022 9:59 am
- Forum: General
- Topic: TC stability issues
- Replies: 23
- Views: 362247
Re: TC stability issues
What other extensions do you have installed in the IDE? Also, if you're not using TwineCompile for daily work, turn off SORTA compile.
- Wed Feb 02, 2022 6:07 pm
- Forum: General
- Topic: TC stability issues
- Replies: 23
- Views: 362247
Re: TC stability issues
This is very unusual to hear. TwineCompile is generally extremely stable, more stable than the built-in IDE compiler, due to the process isolation.
When you say freeze, do you mean the IDE becomes unresponsive, or the compile process just never terminates?
When you say freeze, do you mean the IDE becomes unresponsive, or the compile process just never terminates?
- Mon Jan 17, 2022 11:29 am
- Forum: General
- Topic: TwineCompile with MSbuild, but not with IDE
- Replies: 14
- Views: 85422
Re: TwineCompile with MSbuild, but not with IDE
Unfortunately, we removed the -prog- flag from the MSBuild action because we thought it was not being used any longer. We'll add it back in the next release and make it part of the targets files as well.
- Sat Dec 11, 2021 10:37 am
- Forum: General
- Topic: Eureka log link issue
- Replies: 13
- Views: 95611
Re: Eureka log link issue
_PerformLink is the internal C++Builder link task. TCPerformLink is the TwineCompile-specific one that can be used to run a third-party linker (it's only used for 32-bit projects).
- Wed Dec 01, 2021 5:27 pm
- Forum: General
- Topic: Eureka log link issue
- Replies: 13
- Views: 95611
Re: Eureka log link issue
No, you'll have to do something different for 64-bit builds. Actually, I recommend this new approach for both 32-bit and 64-bit. 1. In TCTargetsXX.targets, locate the LinkDependsOnTargets at the top of the file and replace it with: <LinkDependsOnTargets Condition="'$(Platform)'=='Win32'"> ...