Compare commits

...

2 Commits

Author SHA1 Message Date
Přemysl Eric Janouch 473aa8788c
Update README 2018-11-03 17:04:50 +01:00
Přemysl Eric Janouch 85ada4dd2b
Fix build on not-my-system 2018-11-03 15:23:31 +01:00
2 changed files with 5 additions and 1 deletions

View File

@ -21,6 +21,9 @@ Building
Build dependencies: CMake and/or make, a C++14 compiler, pkg-config + Build dependencies: CMake and/or make, a C++14 compiler, pkg-config +
Runtime dependencies: ncursesw, libacl Runtime dependencies: ncursesw, libacl
Unfortunately most LLVM libc++ versions have a bug that crashes 'sdn' on start.
Use GNU libstdc++ if you're affected.
$ git clone https://github.com/pjanouch/sdn.git $ git clone https://github.com/pjanouch/sdn.git
$ mkdir sdn/build $ mkdir sdn/build
$ cd sdn/build $ cd sdn/build
@ -92,7 +95,7 @@ cwd bold
input input
.... ....
Filename colors are taken from the `LS_COLORS` environment variable. Filename colors are taken from the `LS_COLORS` environment variable.
Run 'dircolors' to get some defaults. Run `dircolors` to get some defaults.
Similar software Similar software
---------------- ----------------

View File

@ -30,6 +30,7 @@
#include <fstream> #include <fstream>
#include <map> #include <map>
#include <tuple> #include <tuple>
#include <memory>
#include <unistd.h> #include <unistd.h>
#include <dirent.h> #include <dirent.h>