diff options
author | kr3nshaw <20672068+kr3nshaw@users.noreply.github.com> | 2020-06-08 03:44:31 +1000 |
---|---|---|
committer | kr3nshaw <20672068+kr3nshaw@users.noreply.github.com> | 2020-06-08 03:44:31 +1000 |
commit | e80bd72182be2db282150e1522ed6d30e151c5c7 (patch) | |
tree | f2cc9fed3aaf25624952987e6c083a6b4352d3e6 /tools | |
parent | dda7198000177b869882d486b3527076fad95d2e (diff) |
Changed GCC 9 back to GCC 8 and added fs flag
Diffstat (limited to 'tools')
-rw-r--r-- | tools/knarc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/knarc/Makefile b/tools/knarc/Makefile index a466912c..db803d8b 100644 --- a/tools/knarc/Makefile +++ b/tools/knarc/Makefile @@ -1,7 +1,7 @@ all: knarc knarc: Source.cpp Narc.cpp - g++ -std=c++17 -o knarc Source.cpp Narc.cpp + g++ -std=c++17 -lstdc++fs -o knarc Source.cpp Narc.cpp clean: rm knarc |