diff options
author | kr3nshaw <20672068+kr3nshaw@users.noreply.github.com> | 2020-06-08 04:30:12 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-08 04:30:12 +1000 |
commit | ff60ecd00a76db3fe747ecc38d0fa5e457426f85 (patch) | |
tree | af350ba5e670a4d1bcfff318f4900b4a85963f0b /tools | |
parent | 2efa529b4d644f8a283785b191ccce90a47cd93e (diff) | |
parent | aae365a639011638127c4895c5f86963053bc281 (diff) |
Merge pull request #2 from PlatinumMaster/patch-1
Try to compile with gcc-8.
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 db803d8b..3f0e6492 100644 --- a/tools/knarc/Makefile +++ b/tools/knarc/Makefile @@ -1,7 +1,7 @@ all: knarc knarc: Source.cpp Narc.cpp - g++ -std=c++17 -lstdc++fs -o knarc Source.cpp Narc.cpp + g++ -std=c++17 -o knarc Source.cpp Narc.cpp -lstdc++fs clean: rm knarc |