Skip to content

Commit

Permalink
Merge pull request #622 from openfheorg/dev
Browse files Browse the repository at this point in the history
Updates main to v1.1.2
  • Loading branch information
yspolyakov authored Dec 16, 2023
2 parents 4ebb28e + c105d2b commit b2869ae
Show file tree
Hide file tree
Showing 162 changed files with 2,395 additions and 3,184 deletions.
5 changes: 4 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ project (OpenFHE C CXX)

set(OPENFHE_VERSION_MAJOR 1)
set(OPENFHE_VERSION_MINOR 1)
set(OPENFHE_VERSION_PATCH 1)
set(OPENFHE_VERSION_PATCH 2)
set(OPENFHE_VERSION ${OPENFHE_VERSION_MAJOR}.${OPENFHE_VERSION_MINOR}.${OPENFHE_VERSION_PATCH})

set(CMAKE_CXX_STANDARD 17)
Expand Down Expand Up @@ -284,6 +284,9 @@ if( "${NATIVE_SIZE}" EQUAL 128 )
message(SEND_ERROR "Cannot support NATIVE_SIZE == 128")
endif()
elseif( "${NATIVE_SIZE}" EQUAL 64 )
if ( EMSCRIPTEN )
set( HAVE_INT128 FALSE)
endif()
if( ${HAVE_INT64} )
set( NATIVEINT 64 )
message (STATUS "NATIVEINT is set to " ${NATIVEINT})
Expand Down
Loading

0 comments on commit b2869ae

Please sign in to comment.