Jump to content

alank2

Members
  • Content Count

    115
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by alank2


  1. Thanks for the replies!

     

    Remy>Has CodeGuard EVER worked?  I stopped using it many years ago, and I've seen plenty of users reporting in the various forums over the years about problems with it.

     

    It works great for me most of the time.  It can pick out components that were not deleted, invalid pointer accesses, etc.  I do all my debug builds with it and it helps.

     

    Angus>I attempt to keep the C++ packages up to date with each new release of ICS and Delphi, but can not test them, and get virtually no feedback from C++ users. 

     

    I understand; I had to make some changes to the version I have installed to get it to install in cppbuilder which I documented here a couple years ago.

     

    Angus>The GetIt installers are done by Embarcadero, I just provide a zip with the Delphi and C++ packages, and again don't test C++.


    I may try the getit process and see what it does.  I was wondering if it was a bit more automated in that it does the installation instructions, but it doesn't sound like it.


  2. I've been using ICS 8.59 with C++ Builder 10.3.3 and as I recall it took some work to tweak/install it.

     

    I'm having two issues.  The first is that if I add the TSslHttpCli component to a service, it seems to kill or disable codeguard.  The application will not produce a .CGL file any longer and I don't think codeguard is working.  The second issue is that when I stop the service, normally it shuts down and closes immediately, but just adding the TSslHttpCli component introduces a 60-90 second delay until it finally shuts down.

     

    My first question is - I noticed that 8.66 is available with GetIt if I go into Delphi.  Can I uninstall 8.59 and then use GetIt to download 8.66 through Delphi?  Will it be available in C++ Builder if I do this?


  3. Angus - I emailed the files to you.  Don't forget the instructions too:

     

    The installation instructions need this to be added in the readme:

     

    The Embarcadero installation adds this to the system path:

      C:\Users\Public\Documents\Embarcadero\Studio\20.0\Bpl

    This however does not allow Win32 packages to be installed, to do that you need to add this path to the system path (win10=Start, Edit the system environment variables, Environment variables, System variables, Path, Edit, New:)

      C:\Users\Public\Documents\Embarcadero\Studio\20.0\Bpl\Win32
     

     

    NEW projects that need to use ICS:

    include path:

      add {THE DIR YOU EXTRACTED ICS To}\source\include\103\win32

    library path
      add C:\Users\Public\Documents\Embarcadero\Studio\20.0\BPL\Win32

    • Like 1
    • Thanks 1

  4. Angus,

     

    Check out this page here:

    https://wiert.me/2013/11/20/when-the-delphi-xe5-commandline-compiler-fails-with/

     

    When I do a search on the ICS 8.59 files for <DCC_DebugInformation>false</DCC_DebugInformation>, I get 88 files returned (all CBPROJ and DPROJ files).

     

    If I search for <DCC_DebugInformation>true</DCC_DebugInformation>, I get OverbyteIcsD2009Design.dproj and OverbyteIcsD2009Run.dproj.  This is probably a mistake and these should be like the rest.

     

    On the page above, it mentions that "As of Delphi XE5, these values can only be 0, 1 or 2: ", but perhaps false or true is still tolerated in even modern Delphi compilers (or everyone would be having this issue).

     

    What do you want me to do?  I can modify it in all the CBPROJ files and zip/attach them and leave the DPROJ files alone.  Or I can fix it in all of them.

     

    Thanks,

     

    Alan


  5. Angus,

     

    I appreciate the work everyone does on this.  My instructions above should be plenty for you to make the corrections, but if you would like me to make them and submit to you a zip with only the files changed, I can do that.  The step above about replacing false with 0 might apply to other cbproj files besides 10.3 as well, so I can do a search to identify them and fix them as well.  PM me your email address.

     

    Thanks,

     

    Alan

     

    • Like 1

  6. Here are the ICS file changes that need to be made (for someone who knows how to do this):

     

    notepad edit packages\IcsFmxCB103Run.cpp
      replace two occurences of 102 with 103

     

    notepad edit packages\IcsVclCB103Run.cpp
      replace two occurences of 102 with 103

     

    notepad edit IcsCommonCB103Design.cbproj
      replace
        <DCC_DebugInformation>false</DCC_DebugInformation>
      with

        <DCC_DebugInformation>0</DCC_DebugInformation>

     

    notepad edit IcsCommonCB103Run.cbproj
      replace
        <DCC_DebugInformation>false</DCC_DebugInformation>
      with
        <DCC_DebugInformation>0</DCC_DebugInformation>

     

    notepad edit IcsFmxCB103Design.cbproj
      replace
        <DCC_DebugInformation>false</DCC_DebugInformation>
      with
        <DCC_DebugInformation>0</DCC_DebugInformation>

     

    notepad edit IcsFmxCB103Run.cbproj
      replace
        <DCC_DebugInformation>false</DCC_DebugInformation>
      with
        <DCC_DebugInformation>0</DCC_DebugInformation>

     

    notepad edit IcsVclCB103Design.cbproj
      replace
        <DCC_DebugInformation>false</DCC_DebugInformation>
      with
        <DCC_DebugInformation>0</DCC_DebugInformation>

     

    notepad edit IcsVclCB103Run.cbproj
      replace
        <DCC_DebugInformation>false</DCC_DebugInformation>
      with
        <DCC_DebugInformation>0</DCC_DebugInformation>

     

     

    The installation instructions need this to be added in the readme:

     

    The Embarcadero installation adds this to the system path:

      C:\Users\Public\Documents\Embarcadero\Studio\20.0\Bpl

    This however does not allow Win32 packages to be installed, to do that you need to add this path to the system path (win10=Start, Edit the system environment variables, Environment variables, System variables, Path, Edit, New:)

      C:\Users\Public\Documents\Embarcadero\Studio\20.0\Bpl\Win32
     

     

    How I installed it (since ICS does not currently have the above changes):

    Extract ICS.

    Make all the file corrections above.

    Add C:\Users\Public\Documents\Embarcadero\Studio\20.0\Bpl\Win32 to the system path.

    Follow the rest of the readme instructions.

     


    NEW projects that need to use ICS:

    include path:
      add {THE DIR YOU EXTRACTED ICS To}\source\include\103\win32

    library path
      add C:\Users\Public\Documents\Embarcadero\Studio\20.0\BPL\Win32

     


  7. The issue I run into is that if I launch C++ Builder and then open D103Install.groupproj, it says:

     

    The project can not be loaded becuase the required personality Delphi.Personality is not available.

     

    If I close C++ Builder and launch RAD Studio instead which has both personalities, I can proceed through the readme installation notes. The issue is that it only installs for the Delphi personality.

     

    If I do a new project for Delphi, the "Overbyte ICS" components are available, but if I do a new project for C++ Builder, they are not...

     

    Any ideas?

×