Skip to content

Update build instructions #246

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,23 @@ SmallBASIC is a fast and easy to learn BASIC language interpreter ideal for ever

#### Install packages

Ubuntu
Ubuntu (25.04)

```
sudo apt-get install git autotools-dev automake gcc g++ libsdl2-dev libfreetype6-dev libfontconfig1-dev xxd
sudo apt install git autotools-dev automake make gcc g++ libsdl3-dev libfreetype-dev libfontconfig-dev xxd
```

Manjaro (Arch)

```
sudo pacman -S gcc make autoconf automake sdl2 freetype2 fontconfig pkgconf vim
sudo pacman -S gcc make autoconf automake sdl3 freetype2 fontconfig pkgconf vim
```

#### Initial setup

```
$ git clone https://github.com/smallbasic/SmallBASIC.git
$ cd SmallBASIC
$ git submodule update --init
$ sh autogen.sh
```

Expand Down Expand Up @@ -95,7 +94,6 @@ $ brew install autoconf
```
$ git clone https://github.com/smallbasic/SmallBASIC.git
$ cd SmallBASIC
$ git submodule update --init
$ sh autogen.sh
```

Expand Down
2 changes: 2 additions & 0 deletions src/platform/console/device.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,13 +104,15 @@ void default_write(const char *str) {
}
}
}
fflush(stdout);
}

//
// console output if vt100 (esc sequences) is supported
//
void vt100_write(const char *str) {
printf("%s", str);
fflush(stdout);
}

void console_init() {
Expand Down