1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-05-12 12:00:14 +00:00
QB64 is a modern extended BASIC programming language that retains QBasic/QuickBASIC 4.5 compatibility and compiles native binaries for Windows, Linux, and macOS. https://qb64.com
Go to file
brickviking 786c050bbf Finally got the ARCH stuff working
Arch discovery needed to be outside the test for errorlevel
2022-08-26 02:00:21 +12:00
.ci Push changelog to bucket 2021-12-23 23:37:59 +11:00
.github Update bug_report.md 2022-06-17 15:15:04 -07:00
.vscode Replaced OpenAL audio with miniaudio 2022-08-17 21:03:44 +05:30
internal Mimic QB45 behavior - Sound() frequency 20KHz or above produces silence 2022-08-20 00:11:06 +05:30
licenses Updated license files 2022-08-18 20:11:59 +05:30
source Initial Help "reset". 2022-08-24 01:38:08 -05:00
.gitignore Let's put the repo on a diet! 2022-08-17 11:43:53 +05:30
build.bat Updating Wiki Functionality (still more to do). 2022-06-24 14:00:44 -05:00
CHANGELOG.md Update Changelog [ci-skip] 2022-03-11 14:27:18 -03:00
COPYING.txt Fix up licensing details 2020-02-25 21:21:12 +11:00
findcurl.cmd Finally got the ARCH stuff working 2022-08-26 02:00:21 +12:00
qb64.1 Update text, add -v option 2020-01-02 14:32:31 +11:00
README.md Update readme 2022-05-01 22:28:46 -03:00
SAMPLES.txt Replace samples folder with a pointer to forum 2020-06-23 20:50:28 +10:00
setup_lnx.sh Merge pull request #168 from all-other-usernames-were-taken/patch-1 2021-06-14 21:07:04 +10:00
setup_osx.command Prevents deleting .a and .o files from mingw's folders (macOS). 2021-01-24 01:40:56 -03:00
setup_win.cmd Add missing label 2022-08-17 22:57:55 +05:30

QB64

githubstrip

QB64 is a modern extended BASIC+OpenGL language that retains QB4.5/QBasic compatibility and compiles native binaries for Windows (XP and up), Linux and macOS.

contributions welcome

Table of Contents

  1. Installation

    1. Windows
    2. macOS
    3. Linux
  2. Usage

  3. Additional Info

Installation

Download the appropriate package for your operating system. Check the Releases page.

Windows

Make sure to extract the package contents to a folder with full write permissions (failing to do so may result in IDE or compilation errors).

  • It is advisable to to whitelist the QB64 folder in your antivirus/antimalware software *

macOS

Before using QB64 make sure to install the Xcode command line tools with:

xcode-select --install

Run ./setup_osx.command to compile QB64 for your OS version.

Linux

Compile QB64 with ./setup_lnx.sh.

Dependencies should be automatically installed. Required packages include OpenGL, ALSA and the GNU C++ Compiler.

Usage

Run the QB64 executable to launch the IDE, which you can use to edit your .BAS files. From there, hit F5 to compile and run your code.

To generate a binary without running it, hit F11.

Additionally, if you do not wish to use the integrated IDE and to only compile your program, you can use the following command-line calls:

qb64 -c yourfile.bas

qb64 -c yourfile.bas -o outputname.exe

Replacing -c with -x will compile without opening a separate compiler window.