Skip to content

Commit

Permalink
Merge pull request #78 from NilFoundation/cleanup-ccache
Browse files Browse the repository at this point in the history
cleanup ccache
  • Loading branch information
AndreyMlashkin authored and martun committed May 13, 2024
2 parents 4f708aa + 483bd73 commit 5ae4587
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 11 deletions.
9 changes: 0 additions & 9 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -46,17 +46,8 @@ include(PlatformConfiguration)
include(CheckSSE)
include(CheckAVX)

option(BUILD_WITH_CCACHE "Build with ccache usage" TRUE)
option(BUILD_TESTS "Build unit tests" FALSE)

if(UNIX AND BUILD_WITH_CCACHE)
find_program(CCACHE_FOUND ccache)
if(CCACHE_FOUND)
set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ccache)
set_property(GLOBAL PROPERTY RULE_LAUNCH_LINK ccache)
endif(CCACHE_FOUND)
endif()

option(${CMAKE_UPPER_WORKSPACE_NAME}_${CURRENT_UPPER_PROJECT_NAME}_AES
"Build with AES block encryption support" TRUE)
option(${CMAKE_UPPER_WORKSPACE_NAME}_${CURRENT_UPPER_PROJECT_NAME}_ARIA
Expand Down
4 changes: 2 additions & 2 deletions include/nil/crypto3/detail/pack_numeric.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@
#include <boost/assert.hpp>
#include <boost/static_assert.hpp>

#include <nil/crypto3/multiprecision/cpp_int.hpp>
#include <boost/multiprecision/cpp_int_modular.hpp>

namespace nil {
namespace crypto3 {
namespace detail {
using namespace nil::crypto3::multiprecision;
using namespace boost::multiprecision;

template<typename Endianness, int InValueBits, int OutValueBits, typename InputIterator, typename Backend,
expression_template_option ExpressionTemplates>
Expand Down

0 comments on commit 5ae4587

Please sign in to comment.