diff options
author | SkyrisBactera <davis.davalos.delosh@gmail.com> | 2017-06-13 14:50:28 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-13 14:50:28 -0600 |
commit | b8bf062c8fdd4f4aff0017b7d9de27fdc0909e3f (patch) | |
tree | 87be22d13b29ed75e4c3802854b7c3e92d21b7ee | |
parent | fb154f5a6e43a86801fd16f392633c854d099ac4 (diff) |
Missing a dependency
Without libpng-dev, sudo make install causes:
In file included from src/gfx/gb.c:20:0:
include/gfx/main.h:20:17: fatal error: png.h: No such file or directory
#include <png.h>
^
compilation terminated.
Makefile:90: recipe for target 'src/gfx/gb.o' failed
make: *** [src/gfx/gb.o] Error 1
-rw-r--r-- | INSTALL.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/INSTALL.md b/INSTALL.md index 0d48f6daf..c68896bb6 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -7,7 +7,7 @@ If you run into trouble, ask on irc ([**freenode#pret**](https://kiwiirc.com/cli # Linux ```bash -sudo apt-get install make gcc bison git +sudo apt-get install make gcc bison git libpng-dev git clone https://github.com/rednex/rgbds cd rgbds |