• Hi folks,

    the forum is now set to read only.

    After 6 yrs under my control, I have done all the work on April 6th that was needed to be able to transfer the database, forum files and the domain to Philipp Moeller aka @Phil7. The Github repository was already transfered and under his control.

    According to GDPR/DSGVO laws, all user accounts are now deleted that didn't accept the new terms (Updated on March 7th 2024 and an email was send to your address).

    I wish you all a great future and health. As the internet is gigantic but sometimes also very small, I am sure we will bump into each other someday again. Looking forward to it. :-)

    Cheers
    Michael

  • Hi folks,
    as per verbal aggreement between the new owner of the Cerberus X community and myself, I will keep this place online till May 6th, 2024.
    After that date it will be purged and this Domain will be most likely be used for my own stuff again.
    I am not participating in the new place for various reasons.
    If someone wants to contact me you can do so via mail to mike@fantomgl.com.
    Best wishes
    Michael

Fixed Changing builder.ps1 to menu as default breaks deploy option.

dawlane

Well-known member
CX Code Contributor
Tutorial Author
Joined
Jun 21, 2017
Messages
1,147
On Git the hub development branch. An alteration to the WinNT builder script's default parameters to menu option to show on start up breaks the option to do automated and deploy.
 
@dawlane Ok. I was not aware of that. Sorry! Is there a way of safely setting showmenu to true as default?
 
Sorry! Is there a way of safely setting showmenu to true as default?
Not without making changes to both how the menu is triggered and the command line that's triggered to re-run the script after the git archive is copied. And as both the power shell version and bash version are meant to work near enough with similar options, it would have to be done twice and all the build documentation updated.

The scripts were written to work the same as the old rebuild all version: Install the compiler and Qt SDK, then just type .\builder.ps1 or ./builder.sh and let it run. The menu is there to give the option to select the tool to build once any changes where made to those tools, speeds up development when you have Visual Studio Code installed and a shell terminal running. At some point I'll add an extra command line option to select the tool to build. Then at some point, the IDE can call the script to build the tools directly.
 
Last edited:
Ok, I reverted it. Thanks @dawlane!
Thank you.
There is a pull request where I've now added a command line option to build tools by name, with the option to build either transcc from the C++ sources, or the Cerberus transcc source file. See the documentation in the src/docs directory for the tool options.
 
@dawlane I like that option to build transcc from cerberus code directly. It doesn't change the C++ source used for the other option, right?
 
It doesn't change the C++ source used for the other option, right?
Correct. The C++ source code is never touched, so if the transcc sources get broken there is a way to get a working transcc to fix it.
Currently the C++ files generated from building transcc.cxs are cleaned up. I'll probably do changes to the scripts where it does a time/date back up of the previously generated C++ files, and add a submenu/option to select and restore from any previous C++ files that have been saved.
 
Back
Top Bottom