Setup Error

Dear all,

I tried to compile my XData, Aurelius and Sparkle project in 64 Bit IDE, no luck...
I ran over this issue updating my TMS components :slight_smile:

11:48:38] Skipped Delphi 12, win64xintel. We can't find ../bin64/bcc64x.exe.
[11:48:38] === Build Summary ===
*
[11:48:38] - TMS BIZ Core Library 1.44 -> OK.
[11:48:38] - TMS Aurelius 5.21 -> OK.
[11:48:38] - TMS Logging 2.13 -> OK.
[11:48:38] - TMS Sparkle 3.31 -> OK.
[11:48:38] - TMS FNC Core 4.1.1.3 -> OK.
[11:48:38] - TMS FNC Blox 3.0.3.5 -> OK.
[11:48:38] - TMS FNC UI Pack 6.5.1.1 -> OK.
[11:48:38] - TMS FNC Blox Toolbars for FMX/VCL 1.0.0.1 -> OK.
[11:48:38] - TMS FNC Push Notifications 1.0.0.0 -> OK.
[11:48:38] - TMS FNC WebSocket 1.0.4.3 -> OK.
[11:48:38] - TMS FNC WX Pack 1.7.2.2 -> OK.
[11:48:38] - TMS Diagram Studio 4.31 -> OK.
[11:48:38] - TMS VCL UI Pack 13.5.1.0 -> OK.
[11:48:38] - TMS Workflow Studio 2.20.0.1 -> OK.
[11:48:38] - TMS WEB Core 2.8.1 -> OK.
[11:48:38] - TMS XData 5.20
[11:48:38] - Delphi 12
[11:48:38] - win32intel -> OK.
[11:48:38] - win64intel -> FAILED.
[11:48:38] - TMS Sphinx 1.14
[11:48:38] - Delphi 12
[11:48:38] - win32intel -> OK.
[11:48:38] - win64intel -> FAILED.
[11:48:38] - TMS FNC Chart 3.0.1.4
[11:48:38] - Delphi 12
[11:48:38] - win64intel -> OK.
[11:48:38] - win32intel -> FAILED.

Am i missing something, i couldn't find bcc64x.exe......

any help is appreciated

br
Michael

pls see attached installtion log

logs.zip (111.5 KB)

Hi,
bcc64x is for the "Modern C++ compiler", you probably don't have C++ installed. If you don't care about C++, you can ignore this warning. Rad studio added a new Platform to packages in Delphi for the new C++ compiler: Win64x or "Win64 (Modern)":

2025-04-16_09.05.15

But as said, this only applies to C++, Win64 and Win64x generate exactly the same delphi files, they only generate different C++ libraries to be used by C++ builder.
So again, if you aren't interested in C++, just ignore the warning. Smartsetup just detected that there is no bcc64, so it won't try to create the C++ "Modern" library files.

Now about the error you are getting. When trying to compile XData you got:

error F2084: Interner Fehler: AV008D0E77(00730000)-R00D100D1-0

This is normally a temporary error due to who knows what, maybe the Antivirus kept some file open when the compiler tried to open it or whatever. Reinstalling should solve it.

Then you got an error in sphinx, but that was just because xdata failed before, and sphinx needs xdata.

So what you should do is:

  1. Open cmd.exe
  2. type the following:
cd C:\Components\TMS\TMS Setup
tms build

This will rebuild only what failed last time, and should correct the temporary error. Please let us know how it goes