From 0629fe7846352598b162fa0e39440b2a96e841e7 Mon Sep 17 00:00:00 2001 From: GuanZhang <44019025+guanzhangrtk@users.noreply.github.com> Date: Sun, 8 Aug 2021 18:04:48 +0900 Subject: [PATCH 1/3] Add missing requirements for clean MSYS2 environment --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5a476a86..2ff7f820 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ sunshine needs access to uinput to create mouse and gamepad events: ### Requirements: - mingw-w64-x86_64-openssl mingw-w64-x86_64-cmake mingw-w64-x86_64-toolchain mingw-w64-x86_64-opus mingw-w64-x86_64-x265 mingw-w64-x86_64-boost git mingw-w64-x86_64-make + mingw-w64-x86_64-openssl mingw-w64-x86_64-cmake mingw-w64-x86_64-toolchain mingw-w64-x86_64-opus mingw-w64-x86_64-x265 mingw-w64-x86_64-boost git mingw-w64-x86_64-make cmake make gcc ### Compilation: - `git clone https://github.com/loki-47-6F-64/sunshine.git --recursive` From dce64fc4873ccd95b808209d9d3acd05ba75ba90 Mon Sep 17 00:00:00 2001 From: GuanZhang <44019025+guanzhangrtk@users.noreply.github.com> Date: Sun, 8 Aug 2021 18:20:43 +0900 Subject: [PATCH 2/3] Add more detailed log message when config::nvhttp.file_state doesn't exist upon first run --- sunshine/nvhttp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sunshine/nvhttp.cpp b/sunshine/nvhttp.cpp index 68806106..004ce6a7 100644 --- a/sunshine/nvhttp.cpp +++ b/sunshine/nvhttp.cpp @@ -132,7 +132,7 @@ void save_state() { void load_state() { if(!fs::exists(config::nvhttp.file_state)) { - BOOST_LOG(info) << "DOENST EXIST"sv; + BOOST_LOG(info) << "File "sv << config::nvhttp.file_state << " doesn't exist"; http::unique_id = util::uuid_t::generate().string(); return; } From 948500ae41295fa457fcb84b7dce4f2ace239f4a Mon Sep 17 00:00:00 2001 From: GuanZhang <44019025+guanzhangrtk@users.noreply.github.com> Date: Mon, 9 Aug 2021 11:38:12 +0900 Subject: [PATCH 3/3] Added missing sv as requested by loki-47-6F-64 --- sunshine/nvhttp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sunshine/nvhttp.cpp b/sunshine/nvhttp.cpp index 004ce6a7..0d854fdb 100644 --- a/sunshine/nvhttp.cpp +++ b/sunshine/nvhttp.cpp @@ -132,7 +132,7 @@ void save_state() { void load_state() { if(!fs::exists(config::nvhttp.file_state)) { - BOOST_LOG(info) << "File "sv << config::nvhttp.file_state << " doesn't exist"; + BOOST_LOG(info) << "File "sv << config::nvhttp.file_state << " doesn't exist"sv; http::unique_id = util::uuid_t::generate().string(); return; }