Jump to content

hansw

Members
  • Content Count

    9
  • Joined

  • Last visited

Posts posted by hansw


  1. Hello,

    I have a very similar problem. I get an ilink64 access violation in 64-bit debug build only. It happens only in one of our projects (which uses TMS VCL UI Pack) - and we have several (even more complex) projects using TMS which all build without any problems.

    I filed a QP report

    https://embt.atlassian.net/servicedesk/customer/portal/1/RSS-680

    but I cannot provide a simple example project.

    Maybe you can attach your example project to the report and I can test if I can reproduce the problem.

     

    Regards, Hans


  2. Hi Roger,

    thanks for the clarification. Then it seems I'm as lost as you are.

     

    You could try to run the make from the RAD Studio command prompt:

    msbuild /t:Make /p:"Config=Release" /p:"platform=Win64" /v:diag "MYPROJECTNAME.cbproj"

    Please note that you will have to define user environment variables manually in the command prompt, if they are set in the IDE (Tools | Options | Environment Variables) only.

     

    I guess you will have to open an Embarcadero support case.

     

    Regards, Hans


  3. Hi Roger,

    you have to set the Verbosity option to Diagnostic and you have to turn Twine Compile off. Now when the linker fails you have to switch in the messages area to the Output page. There you can see which heap is running out of memory.

    It's described here:

    https://docwiki.embarcadero.com/RADStudio/Alexandria/en/Handling_Linker_Out_of_Memory_Errors

     

    Twine Compile does not seem to intercept these output messages.

     

    HTH, Hans


  4. On 5/26/2022 at 10:54 AM, RoddyP said:

    Inevitably there have been some 3rd party Delphi components that need compiling from source.

     

    Does C++Builder version include any Delphi compiler (maybe command line only?), or do I need the full RADStudio just to use these?  

     

     

    You can use C++Builder to install Delphi packages with some manual steps.

    First you compile the package from the command line:

    "%BDS%\bin\dcc32.exe" -JL -LE<BPL_OUTPUTDIR> -NB<DCP_OUTPUTDIR> -NH<INCLUDEDIR> Package.dpk

    Afterwards you can use the IDE (Component -> Install Packages -> Add) to register the bpl manually.

     

    HTH, Hans

    • Like 1
×