Announcing QB64 Phoenix Edition v0.6 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.6 Release! (/showthread.php?tid=386) |
Announcing QB64 Phoenix Edition v0.6 Release! - admin - 05-10-2022 Release v0.6.0 - QB64 Phoenix Edition/QB64pe (github.com) Another step forward in making our first version "1.0" as the new team working on QB64. This release (version 0.5) now:
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.6 Release! - bplus - 05-10-2022 Thanks admin way to keep project alive and growing! Thumbs up! RE: Announcing QB64 Phoenix Edition v0.6 Release! - euklides - 05-15-2022 Well... bini$ = _Bin$(25) Print bini$ Sleep ---> C++ Compilation Failed (check \internal\temp\compilelog.txt compilelog.txt: E:/qb64/internal/c/c_compiler/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot open output file ..\..\untitled.exe: Permission denied collect2.exe: error: ld returned 1 exit status Problem on my pc or in the QB64 program ? RE: Announcing QB64 Phoenix Edition v0.6 Release! - SMcNeill - 05-15-2022 I'll dig into it to double check things. Which OS are you using? Will it build other QB64 programs, and just not the one with _BIN$ in it? A "cannot open file.... permission denied" issue seems to me like it'd be a pc issue with read/write permissions. And something with that link just seems off to me as well: E:/qb64/internal/c/c_compiler/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/bin/ld.exe RE: Announcing QB64 Phoenix Edition v0.6 Release! - SMcNeill - 05-15-2022 Tested your code on a Linux Mint 20.3 VM. Compiled and ran with no issues. RE: Announcing QB64 Phoenix Edition v0.6 Release! - RhoSigma - 05-15-2022 There are no issues with _Bin$, it runs as expected and is already used in the debugging features of QB64 itself. However, got that compilation errors several times too with arbitrary programs. If ld.exe (the linker) complains with a permission denied error when outputting the final exe, then this usually indicates the exe in question is already existing and in use, so that it cannot be overwritten. This sometimes happens, if you working with multiple QB64 instances, trying out pasted examples or just quick tests, in short programs without a title, hence all want to output to untitled.exe Save your program, exit all instances of QB64, then try again. RE: Announcing QB64 Phoenix Edition v0.6 Release! - euklides - 05-17-2022 Works now ! Perhaps a multiple instance of QB64 in the ram ??? |