![]() |
|
GNU C++ Compiler error - Printable Version +- QB64 Phoenix Edition (https://qb64phoenix.com/forum) +-- Forum: QB64 Rising (https://qb64phoenix.com/forum/forumdisplay.php?fid=1) +--- Forum: Code and Stuff (https://qb64phoenix.com/forum/forumdisplay.php?fid=3) +---- Forum: Help Me! (https://qb64phoenix.com/forum/forumdisplay.php?fid=10) +---- Thread: GNU C++ Compiler error (/showthread.php?tid=3307) |
RE: GNU C++ Compiler error - Pete - 12-22-2024 Well of course that's better. Don't forget, I was channeling Clippy. Pete
RE: GNU C++ Compiler error - bplus - 12-22-2024 RE: Steve's even better... reply Yes all QB files in separate folder but that's not all I need to do. Here is my checklist, to which I add some other item every new version it seems: Code: (Select All) DownloadedPlus a good time to run a backup of QB File and clear the Pictures folder and review and refile Downloads of bas stuff (do that first actually). RE: GNU C++ Compiler error - Kernelpanic - 12-22-2024 Sometimes one can really to make a serious mistake.
RE: GNU C++ Compiler error - Cobalt - 12-22-2024 ![]() *sigh* *sigh*
RE: GNU C++ Compiler error - eoredson - 12-22-2024 How about the following: Download QB64pe-4.0.0.zip Extract to C:\ preserving pathnames. Drop to Cmd then C>Cd\ C>Ren QB64pe QB64pe.old C>Ren QB64pe-4.0.0 QB64pe C>Cd\QB64pe C>@echo Run install command C>setup_win.cmd C>Exit RE: GNU C++ Compiler error - Kernelpanic - 12-23-2024 (12-22-2024, 11:52 PM)eoredson Wrote: How about the following:Without offending you - what are you doing there?
RE: GNU C++ Compiler error - eoredson - 12-23-2024 Quote:Without offending you - what are you doing there?Trying to build the QB64pe source into the original \QB64pe directory. RE: GNU C++ Compiler error - JRace - 12-23-2024 (12-22-2024, 11:52 PM)eoredson Wrote: Extract to C:\ preserving pathnames.This implies that you are running on Windows? If so, there is no need to build from source unless you are making changes to the compiler. The Windows version of QB64PE is ready to use out of the box. Just unpack and go. BEFORE UNPACKING THE WINDOWS .7z ARCHIVE: delete your old "qb64pe" folder or rename it Name it to "qb64pe_OLD", or "Q", or "Fred", or whatever. The new name does not matter as long as you free up the name "qb64pe" for reuse. If you run an antivirus then you may have to go through the rigmarole of whitelisting the new PE with your A/V. If the new installation has the same directory name as your old installation, then any old file associations, Open With options, etc should work just fine on the new version, with no changes needed. The entire Windows compiler suite is contained in a folder called "qb64pe", so just extract the archive wherever you want and you are good to go. ((If you insist on building from source, just do it in the "QB64pe-4.0.0" folder. If successful you can then move the shiny new PE files into a good (and EMPTY!!!) home of their very own.)) RE: GNU C++ Compiler error - eoredson - 12-23-2024 (12-23-2024, 12:29 AM)JRace Wrote:(12-22-2024, 11:52 PM)eoredson Wrote: Extract to C:\ preserving pathnames.This implies that you are running on Windows? I have downloaded the file: qb64pe_win-x86-4.0.0.7z and had compilation issues and was told to build the source from: QB64pe-4.0.0.zip which extracts into \QB64pe-4.0.0 but I want it in \QB64pe RE: GNU C++ Compiler error - JRace - 12-23-2024 You beat my last edit: Do the build in the "QB64pe-4.0.0" folder. If successful you can then move the shiny new PE files into a good (and EMPTY!!!) home of their very own. Reading your compilelog.txt, it looks like some essential files got clobbered, like you may have installed 4.0.0 onto an older version of PE. QB64PE on Windows is -->2<-- compilers with many thousands of files built to work with other files of the same version. Even if the names don't change, the contents of many of those files change from one PE version to the next, so lose that idea about merging directories. That's, NEVER a good idea when updating software suite like PE. Most software updates remove or isolate the old before cleanly installing the new, and that's the way we should do it. Unless the author explicitly says a new-over-old update is safe, assume it's not. I recommend trying a COMPLETELY FRESH extraction of the .7z archive. |