QB64 Phoenix Edition v3.9.0 Released! - Printable Version +- QB64 Phoenix Edition (https://qb64phoenix.com/forum) +-- Forum: Chatting and Socializing (https://qb64phoenix.com/forum/forumdisplay.php?fid=11) +--- Forum: Announcements (https://qb64phoenix.com/forum/forumdisplay.php?fid=18) +--- Thread: QB64 Phoenix Edition v3.9.0 Released! (/showthread.php?tid=2063) |
RE: QB64 Phoenix Edition v3.9.0 Released! - RhoSigma - 10-06-2023 (10-06-2023, 09:48 PM)bert22306 Wrote: If cpp.exe is a file in MinGW, then does anyone have a clue about what won't translate properly to C++? I tried a couple more programs and they all seemed to compile correctly. Should I expect some programs to give me compilation errors I never saw previously? I hope you did intall the qb64pe folder into your personal (user) folder and not directly on the C:\ path, I've never had problems on my company's work PC when installing everything into my user folder even with McAfee, Sentinel and who knows whatever other security software our admins installed on the PCs. RE: QB64 Phoenix Edition v3.9.0 Released! - SMcNeill - 10-06-2023 (10-06-2023, 09:48 PM)bert22306 Wrote: If cpp.exe is a file in MinGW, then does anyone have a clue about what won't translate properly to C++? I tried a couple more programs and they all seemed to compile correctly. Should I expect some programs to give me compilation errors I never saw previously? From what I understand about such things, (which I admit is much less than it should be,) cpp is the "GNU pre-compiler", and gpp is the "general purpose precompiler". Since you tend to program almost exclusively for windows environments, I don't *think* you'll ever make use of cpp, but I wouldn't 100% swear to it. Someone with more C++ experience than me will have to give you a definitive answer, but I don't personally think it's going to be much of an issue -- if any at all -- for you. RE: QB64 Phoenix Edition v3.9.0 Released! - Kernelpanic - 10-06-2023 (10-06-2023, 09:48 PM)bert22306 Wrote: If cpp.exe is a file in MinGW, then does anyone have a clue about what won't translate properly to C++? I tried a couple more programs and they all seemed to compile correctly. Should I expect some programs to give me compilation errors I never saw previously?Is it about the work PC that you don't have the option to set - right? Something is wrong in your description. If Cpp.exe was deleted, no C++ program should be compiled. Consequently, nothing should work. Type gcc --version What is displayed? If MingW is installed, this should basically be displayed: If McAfee deletes individual files, there must be an error message. So, if everything is installed correctly and works, it should look like this (for example): RE: QB64 Phoenix Edition v3.9.0 Released! - bert22306 - 10-06-2023 Yes, it's installed in a personal folder in my work PC, where I get the deletion message from McAfee. Conversely, it is installed not in a user folder in my own PC, where all works fine. The message is: "Trellix Endpoint Security Alert. The file cpp.exe was detected as a threat and deleted." The warning message pops up toward the end of extracting the files. I use winzip for this, in the work PC. I have gotten into the habit of always recompiling qb64pe.exe, after the download. Oddly enough perhaps, the recompile works and all my programs which I recompiled to test this also seem to work. From what you guys say, though, the issue did not surface because of version 3.9, but rather, because something in the McAfee settings was changed. That being the case, I can't complain to QB64pe. Thanks! RE: QB64 Phoenix Edition v3.9.0 Released! - Kernelpanic - 10-07-2023 Quote:The message is: "Trellix Endpoint Security Alert. The file cpp.exe was detected as a threat and deleted."Then only the person who set it up can help you, the administrator. Explain the problem to him. RE: QB64 Phoenix Edition v3.9.0 Released! - a740g - 10-07-2023 (10-07-2023, 12:24 AM)Kernelpanic Wrote:Quote:The message is: "Trellix Endpoint Security Alert. The file cpp.exe was detected as a threat and deleted."Then only the person who set it up can help you, the administrator. Explain the problem to him. They will probably ask for a "business case / justification". Our company moved away from McAfee this year to the MS built-in security. Everything has been good since then. Good riddance! RE: QB64 Phoenix Edition v3.9.0 Released! - bert22306 - 10-07-2023 (10-07-2023, 12:41 AM)a740g Wrote:(10-07-2023, 12:24 AM)Kernelpanic Wrote:Quote:Then only the person who set it up can help you, the administrator. Explain the problem to him. BINGO! You got the problem exactly right. _FLOAT problem: What has happend with QB64 - BSpinoza - 10-07-2023 This is one of my programs: Code: (Select All)
Input values i.e. : 3 -> result : 2 8 -> result: 5040 It worked fine in QBPE64 version 3.8.0 and older versions. Since QBPE64 version 3.9.0 the result is: inf Whats wrong? RE: QB64 Phoenix Edition v3.9.0 Released! - TerryRitchie - 10-07-2023 (10-07-2023, 02:19 AM)bert22306 Wrote:Perhaps you could use something like GoToMyPC to access your home computer from work. The school I worked for had a very strict admin but I was still able to get through the firewall to my home computer using my work computer as a remote access terminal.(10-07-2023, 12:41 AM)a740g Wrote:(10-07-2023, 12:24 AM)Kernelpanic Wrote: RE: _FLOAT problem: What has happend with QB64 - SMcNeill - 10-07-2023 (10-07-2023, 03:37 AM)BSpinoza Wrote: This is one of my programs: The cut-off point is at the limits of DOUBLE precision. For whatever reason, v3.9 isn't honoring the limits on _FLOAT type variables and is, instead, running them as if they were DOUBLE instead. Looks like a bug to me, which can be easily seen in the code below: Code: (Select All) b## = 3 |