Announcing QB64 Phoenix Edition v0.7.1 Release! - Printable Version +- QB64 Phoenix Edition (https://staging.qb64phoenix.com) +-- Forum: Official Links (https://staging.qb64phoenix.com/forumdisplay.php?fid=16) +--- Forum: Announcements (https://staging.qb64phoenix.com/forumdisplay.php?fid=18) +--- Thread: Announcing QB64 Phoenix Edition v0.7.1 Release! (/showthread.php?tid=471) |
Announcing QB64 Phoenix Edition v0.7.1 Release! - admin - 05-22-2022 Release v0.7.1 - QB64 Phoenix Edition/QB64pe (github.com)
Release v0.6.0 Notes
Release v0.5.0 Notes Another step forward in making our first version "1.0" as the new team working on QB64. This release (version 0.5) now:
Click on the big title above to go directly to the release page and grab yourself a copy of the latest version for all your QB64 needs! RE: Announcing QB64 Phoenix Edition v0.7 Release! - SMcNeill - 05-22-2022 One thing you can all have fun and giggle at poor ole Steve over... I forgot to update the version number in the IDE, so if you click the About, it'll still show you a version 0.6.0. This hardly seemed like a game breaker, or any reason to kill the build process and sort over, so everyone is welcome to GPL (Giggle, Point, and Laugh) at me over upgrading 0.6.0 to 0.6.0... LOL! I'll sort this automated build stuff out yet, unless it kills me first! RE: Announcing QB64 Phoenix Edition v0.7 Release! - bplus - 05-22-2022 What is Creation of a new MakeFile System? RE: Announcing QB64 Phoenix Edition v0.7 Release! - SMcNeill - 05-23-2022 (05-22-2022, 10:24 PM)bplus Wrote: What is Creation of a new MakeFile System? For an explanation of what a makefile system is, read up on the basic tutorial here on them: Makefile - Quick Guide (tutorialspoint.com) As Matt mentioned in his previous post on the forums here: ""the change itself replaces all the scattered build logic with a single Makefile - this will make it much easier to make improvements to QB64 in the future, but it should not have any real user-facing changes, QB64 should appear to work pretty much exactly as it did before." He's promised he's going to write up a nice explanation of the new makefile setup and all the options and such with it, so I'll leave it to him for the detailed breakdown about how and what everything is doing with the changes here. RE: Announcing QB64 Phoenix Edition v0.7.1 Release! - Coolman - 05-24-2022 i haven't had time to examine the new makefile yet. has the -O2 compiler option been enabled to speed up qb64 and the generated programs. from the tests i've done, qb64 is basically unoptimized because it doesn't use the gcc or g++ optimization flags. i find this surprising. a global variable at the beginning of the makefile to specify -O2 or -O3 would be very useful. RE: Announcing QB64 Phoenix Edition v0.7.1 Release! - DSMan195276 - 05-31-2022 1. Documentation on the new build system is here, along with a bunch of other general information on the repository and how it gets built. 2. I've been working on a new dialog for setting the C++ compiler settings, I just merged it so it should be available in the next version of QB64. A screenshot of the dialog is below, the 'Compile program with C++ optimization flag' setting will use -O2(We'll work our way up to -O3, I'm still a little skeptical of -O2as it is The setting is off by default for now): ./setup_lnx.sh does not currently set it (which I think you'll want to do) but you can use the EXTRA_CXXFLAGSto provide it, as documented in the build system documentation. Edit: Also note, I discovered a bug in 0.7.1that the Makefiledoes not respect EXTRA_CXXFLAGS, sorry about that. The issue is already fixed in mainand will be addressed in the next release. If you don't want to wait you could grab the latest mainbuild to try it out. RE: Announcing QB64 Phoenix Edition v0.7.1 Release! - Coolman - 05-31-2022 *** Documentation on the new build system is here, along with a bunch of other general information on the repository and how it gets built. thank you very much @DSMan195276 *** I've been working on a new dialog for setting the C++ compiler settings very good idea. it will let the choice to optimize or not (for those who are skeptical) the compilation of programs... *** Also note, I discovered a bug in 0.7.1that the Makefiledoes not respect EXTRA_CXXFLAGS I will wait. Thanks again for your efforts. RE: Announcing QB64 Phoenix Edition v0.7.1 Release! - DSMan195276 - 05-31-2022 FWIW I 100% agree we with using -O2or -O3, we should have been doing so from the very beginning. Unfortunately though I've already seen more than a few questionable practices in libqb.cppthat I'm surprised currently work and could easily get broken by optimizations that will be done, so I think some more testing and likely fixing of libqb.cppis necessary before we turn it on by default. Eventually I would like us to get there though, to the point where offering a checkbox to turn it off isn't necessary. RE: Announcing QB64 Phoenix Edition v0.7.1 Release! - Coolman - 05-31-2022 it's true that if the author of qb64 didn't activate these optimizations options, you have to wonder about the reason. maybe he tried and found some anomalies. in my tests of both versions, i didn't see any visible problem but i'm not the designer and i didn't really examine thoroughly the source code of qb64. the only thing i noticed is that the programs are much faster in graphical commands, computations, sorting algorithms, string manipulations. ... the speed gain is so important that I decided to take the risk. I appreciate the speed of development with qb64. I intend to use it for console programs in bash scripts for personal use. for this kind of processing, speed is essential. that said, you are right. it would be necessary to make thorough tests before activating by default these optimization options. |