diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -11,7 +11,7 @@ A 2D tile-driven game engine for Chicken Scheme, built on SDL2. Targets old-scho (game-run! my-game) -**[📖 Full Documentation](https://docs.etenil.net/downstroke/guide.html)** +**[Full Documentation](https://docs.etenil.net/downstroke/guide.html)** ## Installation @@ -20,10 +20,16 @@ Clone and install from source: git clone https://git.etenil.net/downstroke cd downstroke - chicken-install + chicken-install -s This will install the `downstroke` egg and all its dependencies. Ensure you have the required system libraries installed first (see [Dependencies](#dependencies) below). +Note: On modern systems, installing `expat` can result in incompatible pointer errors. A way around this is to invoke `chicken-install` like so: + +``` +CFLAGS="-Wno-incompatible-pointer-types" chicken-install -s +``` + ## Features |
