Hi, I tried to install SEAL version 3.6 following EVA's guidelines:
git clone -b v3.6.4 https://github.com/microsoft/SEAL.git
cd SEAL
cmake -DSEAL_THROW_ON_TRANSPARENT_CIPHERTEXT=OFF .
make -j
sudo make install
and encountered the following error
/SEAL/native/src/seal/util/locks.h:17:33: error: no template named 'unique_lock' in namespace 'std'; did you mean 'unique_copy'?
using WriterLock = std::unique_lock<std::shared_mutex>;
I fixed it by adding include <mutex> in locks.h. Is it the correct solution or did I mistake something elsewhere?
Hi, I tried to install SEAL version 3.6 following EVA's guidelines:
and encountered the following error
I fixed it by adding
include <mutex>
inlocks.h
. Is it the correct solution or did I mistake something elsewhere?