From 77186f61571817008dc2f63b89fbd676379ceca2 Mon Sep 17 00:00:00 2001 From: Niranjan Yardi Date: Tue, 3 Sep 2024 15:47:57 -0700 Subject: [PATCH] Address feedback --- .../cpp_compiler_version_check.cc | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/starboard/nplb/compiler_compliance/cpp_compiler_version_check.cc b/starboard/nplb/compiler_compliance/cpp_compiler_version_check.cc index cd363bec57f5..c8fe4eea9510 100644 --- a/starboard/nplb/compiler_compliance/cpp_compiler_version_check.cc +++ b/starboard/nplb/compiler_compliance/cpp_compiler_version_check.cc @@ -20,13 +20,9 @@ // starboard/build/config/clang.gni static_assert( __clang_major__ >= 17, - "We compile above starboard targets like cobalt, nplb with " - "clang17 or higher. If you are building non-modularly or with a non-cobalt " - "provided toolchain you may run into this issue. There are 2 ways around " - "this : " - "1) Build libnplb modularly using the evergreen toolchain : " - "https://developers.google.com/youtube/cobalt/docs/gen/starboard/doc/" - "evergreen/cobalt_evergreen_reference_port_raspi2#build_instructions" - "2) Update the toolchain used to build nplb to clang17 or higher " - "versions."); + "We compile above Starboard targets like Cobalt, Nplb with " + "clang17 or higher. If you are building with a non-Cobalt " + "provided toolchain you may run into this error. To fix this error" + "build libnplb using the Evergreen toolchain : " + "cobalt.dev/development/setup-raspi"); #endif // __clang__