Can you help me to check if these libraries are correctly installed? Thanks. (Some dev libraries may not be used for executing the enclave, but I just included all in case).
``` # echo 'deb [arch=amd64] https://download.01.org/intel-sgx/sgx_repo/ubuntu bionic main' | \ tee /etc/apt/sources.list.d/intel-sgx.list # curl -fsSL https://download.01.org/intel-sgx/sgx_repo/ubuntu/intel-sgx-deb.key | apt-key add - # apt-get update && VERSION=2.9.101.2-bionic1 apt-get install -y \ libsgx-aesm-launch-plugin=$VERSION \ libsgx-enclave-common=$VERSION \ libsgx-enclave-common-dev=$VERSION \ libsgx-epid=$VERSION \ libsgx-epid-dev=$VERSION \ libsgx-launch=$VERSION \ libsgx-launch-dev=$VERSION \ libsgx-quote-ex=$VERSION \ libsgx-quote-ex-dev=$VERSION \ libsgx-uae-service=$VERSION \ libsgx-urts=$VERSION ``` -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/apache/incubator-teaclave/issues/377#issuecomment-652658802
