- Ubuntu 16.04-LTS 64-bits
- SGX1 capable system. Most likely this will be an Intel SkyLake or Intel KabyLake system
Use the following command to download the source code.
git clone https://github.com/openenclave/openenclave.git
This creates a source tree under the directory called openenclave.
First, change directory into the openenclave repository:
cd openenclave
Ansible is required to install the project requirements. If not already installed, you can install it by running:
sudo scripts/ansible/install-ansible.sh
Run the following command from the root of the source tree:
sudo ansible-playbook scripts/ansible/oe-contributors-setup-sgx1.yml
To build first create a build directory ("build/" in the example below) and change into it.
mkdir build/
cd build/
Then run cmake
to configure the build and generate the make files and build:
cmake -DUSE_LIBSGX=OFF ..
make
Refer to the Advanced Build Information documentation for further information.
After building, run all unit test cases using ctest
to confirm the SDK is built and working as expected.
Run the following command from the build directory:
ctest
You will see test logs similar to the following:
~/openenclave/build$ ctest
Test project /home/youradminusername/openenclave/build
Start 1: tests/aesm
1/123 Test #1: tests/aesm ............................................................................................................... Passed 0.98 sec
Start 2: tests/mem
2/123 Test #2: tests/mem ................................................................................................................ Passed 0.00 sec
Start 3: tests/str
3/123 Test #3: tests/str ................................................................................................................ Passed 0.00 sec
....
....
....
122/123 Test #122: tools/oedump ............................................................................................................. Passed 0.00 sec
Start 123: oeelf
123/123 Test #123: oeelf .................................................................................................................... Passed 0.00 sec
100% tests passed, 0 tests failed out of 123
Total Test time (real) = 83.61 sec
A clean pass of the above unit tests is an indication that your Open Enclave setup was successful.
You can start playing with the Open Enclave samples after following the instructions in the "Install" section below to configure samples for building,
For more information refer to the Advanced Test Info document.
Follow the instructions in the Install Info document to install the Open Enclave SDK built above.
To build and run the samples, please look here.