From 0eb4920e8ee15cdc5bc42fbbb7927d34e3014cf1 Mon Sep 17 00:00:00 2001 From: PlatinumMaster Date: Sun, 7 Jun 2020 13:05:55 -0400 Subject: Update Makefile to support g++8. --- tools/knarc/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/knarc/Makefile b/tools/knarc/Makefile index a466912c..da52e871 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++8 -std=c++17 -o knarc Source.cpp Narc.cpp clean: - rm knarc + rm knarc \ No newline at end of file -- cgit v1.2.3 From cafc25c1fe5a7c856e111ac06fa3389988d04aa5 Mon Sep 17 00:00:00 2001 From: PlatinumMaster Date: Sun, 7 Jun 2020 13:07:05 -0400 Subject: Attempt to fix travis. --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 5ce0b5e9..0a8b0971 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,6 +12,8 @@ addons: - binutils-arm-none-eabi - wine32 - wine-stable + - gcc-8 + - g++-8 cache: apt: true install: -- cgit v1.2.3