Skip to content

Commit b2869ae

Browse files
authored
Merge pull request #622 from openfheorg/dev
Updates main to v1.1.2
2 parents 4ebb28e + c105d2b commit b2869ae

File tree

162 files changed

+2395
-3184
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

162 files changed

+2395
-3184
lines changed

CMakeLists.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ project (OpenFHE C CXX)
2727

2828
set(OPENFHE_VERSION_MAJOR 1)
2929
set(OPENFHE_VERSION_MINOR 1)
30-
set(OPENFHE_VERSION_PATCH 1)
30+
set(OPENFHE_VERSION_PATCH 2)
3131
set(OPENFHE_VERSION ${OPENFHE_VERSION_MAJOR}.${OPENFHE_VERSION_MINOR}.${OPENFHE_VERSION_PATCH})
3232

3333
set(CMAKE_CXX_STANDARD 17)
@@ -284,6 +284,9 @@ if( "${NATIVE_SIZE}" EQUAL 128 )
284284
message(SEND_ERROR "Cannot support NATIVE_SIZE == 128")
285285
endif()
286286
elseif( "${NATIVE_SIZE}" EQUAL 64 )
287+
if ( EMSCRIPTEN )
288+
set( HAVE_INT128 FALSE)
289+
endif()
287290
if( ${HAVE_INT64} )
288291
set( NATIVEINT 64 )
289292
message (STATUS "NATIVEINT is set to " ${NATIVEINT})

0 commit comments

Comments
 (0)