From b92d3f96c07bd1dfe763ab775e9aff55621f47f2 Mon Sep 17 00:00:00 2001 From: redfish Date: Fri, 13 Oct 2017 15:36:24 +0000 Subject: [PATCH 1/2] cmake: fix shared library build --- external/easylogging++/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/external/easylogging++/CMakeLists.txt b/external/easylogging++/CMakeLists.txt index ae7d931cf..97d0bf571 100644 --- a/external/easylogging++/CMakeLists.txt +++ b/external/easylogging++/CMakeLists.txt @@ -51,6 +51,7 @@ if (BUILD_GUI_DEPS) set(lib_folder lib) endif() install(TARGETS easylogging - ARCHIVE DESTINATION ${lib_folder}) + ARCHIVE DESTINATION ${lib_folder} + LIBRARY DESTINATION ${lib_folder}) endif() From 6bab9efe0081e786a2d1da8a85c0a9cd62dbe442 Mon Sep 17 00:00:00 2001 From: redfish Date: Fri, 13 Oct 2017 15:36:42 +0000 Subject: [PATCH 2/2] debug utils: fix debug build: rm unused identifier --- src/debug_utilities/object_sizes.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/debug_utilities/object_sizes.cpp b/src/debug_utilities/object_sizes.cpp index 47ba5cf6c..c56f97377 100644 --- a/src/debug_utilities/object_sizes.cpp +++ b/src/debug_utilities/object_sizes.cpp @@ -84,7 +84,6 @@ int main(int argc, char* argv[]) SL(cryptonote::txpool_tx_meta_t); - SL(epee::net_utils::network_address_base); SL(epee::net_utils::ipv4_network_address); SL(epee::net_utils::network_address); SL(epee::net_utils::connection_context_base);