1. Upgrade Rust SGX SDK to v1.1.0 2. Upgrade Intel SGX SDK to v2.7.1 3. Upgrade Rust to nightly-2019-11-25
6 lines
226 B
Bash
Executable File
6 lines
226 B
Bash
Executable File
#!/bin/bash
|
|
# Start AESM service required by Intel SGX SDK if it is not running
|
|
if ! pgrep "aesm_service" > /dev/null ; then
|
|
LD_LIBRARY_PATH="/opt/intel/sgxpsw/aesm:$LD_LIBRARY_PATH" /opt/intel/sgxpsw/aesm/aesm_service
|
|
fi
|