This commit mainly accomplish two things: 1. Use makefile to manage dependencies for `occlum build`, which can save lots of time 2. Take dirs `build`, `run` outside from `.occlum`. Remove env var "OCCLUM_INSTANCE_DIR"
15 lines
332 B
Bash
Executable File
15 lines
332 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
rm -rf occlum_context && mkdir -p occlum_context
|
|
cd occlum_context
|
|
# 1. Initialize a directory as the Occlum instance
|
|
occlum init
|
|
|
|
# 2. Generate a secure Occlum FS image and Occlum SGX enclave
|
|
cp ../sample image/bin
|
|
occlum build
|
|
|
|
# 3. Debug the user program inside an SGX enclave with GDB
|
|
occlum gdb /bin/sample
|