PyAPSI icon indicating copy to clipboard operation
PyAPSI copied to clipboard

Building wheel fails due to missing SEAL 4 config

Open LGro opened this issue 2 years ago • 1 comments

While task base still works, running task build PYTHON_VERSION=3.10.4 fails with the following error:

#0 3.894 CMake Error at /tmp/vcpkg/scripts/buildsystems/vcpkg.cmake:852 (_find_package): #0 3.894 Could not find a configuration file for package "SEAL" that is compatible #0 3.894 with requested version "4". #0 3.894 #0 3.894 The following configuration files were considered but not accepted: #0 3.894 #0 3.894 /tmp/vcpkg/installed/x64-linux/share/seal/SEALConfig.cmake, version: 4.1.1

LGro avatar Mar 18 '23 14:03 LGro

I was able to get the error fixed by replacing line 120 of CMakeLists.txt with find_package(SEAL 4.1 QUIET REQUIRED)

rnjailamba avatar Mar 19 '23 02:03 rnjailamba