From 9d43c7f393d607e0b704170ac2202ac0165267dc Mon Sep 17 00:00:00 2001 From: David 'Digit' Turner Date: Mon, 16 Sep 2019 19:13:16 +0200 Subject: [PATCH] Fix Fuchsia build. The Fuchsia build is very picky about newlines at the end of files and will complain loudly about them. Removing the -Wnewline-eof warning solves the issue. --- BUILD.gn | 1 + 1 file changed, 1 insertion(+) diff --git a/BUILD.gn b/BUILD.gn index be9e1ab9..55f21ad0 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -167,6 +167,7 @@ source_set("glslang_sources") { "-Wno-sign-compare", "-Wno-unused-variable", "-Wno-missing-field-initializers", + "-Wno-newline-eof", ] } if (is_win && !is_clang) {