You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+26-1Lines changed: 26 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,4 +46,29 @@ Its userland is completely written in a dialect of BASIC based heavily on BBC BA
46
46
47
47
## 🔨 Documentation
48
48
49
-
You can learn all about the project via the [official website at http://retrorocket.dev](http://retrorocket.dev) where we document technical details, provide a user guide, and BASIC reference.
49
+
You can learn all about the project via the [official website at http://retrorocket.dev](http://retrorocket.dev) where we document technical details, provide a user guide, and BASIC reference.
50
+
51
+
## Building
52
+
53
+
You should not need to build Retro Rocket yourself. Under the releases, and the actions for the project, you will find ready-built
54
+
ISO and USB images you can burn straight to media. If you do want to build it yourself, you will need the following build dependencies:
55
+
56
+
- gcc-14 or higher
57
+
- cmake
58
+
- make
59
+
- nasm
60
+
- xorriso
61
+
- mtools
62
+
- php 8.4 or higher
63
+
64
+
To build, make a build directory, e.g. `build`, and then run `cmake` referencing the source directory:
65
+
66
+
```
67
+
cd retrorocket
68
+
mkdir build
69
+
cd build
70
+
cmake ..
71
+
make -j $NPROC
72
+
```
73
+
74
+
the ISO and USB images will be written to the build directory.
0 commit comments