Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Pal/Linux-SGX] Implement gramine-sgx-get-token in Rust #639

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Meson always goes through Scripts/run-cargo.sh, which will put
# the target directory within Meson's builddir, whatever its name.
# We optimistically set it here assuming the typical builddir name,
# to have manual Cargo invokations reuse it.
[build]
target-dir = "build/target"

# Meson-Cargo integration: handle Meson's debugoptimized profile.
[profile.debugoptimized]
inherits = "release"
debug = 1
1 change: 1 addition & 0 deletions .ci/ubuntu18.04.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ RUN apt-get update && env DEBIAN_FRONTEND=noninteractive apt-get install -y \
ninja-build \
pkg-config \
protobuf-c-compiler \
protobuf-compiler \
pylint3 \
python \
python3-apport \
Expand Down
1 change: 1 addition & 0 deletions .ci/ubuntu20.04.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ RUN apt-get update && env DEBIAN_FRONTEND=noninteractive apt-get install -y \
ninja-build \
pkg-config \
protobuf-c-compiler \
protobuf-compiler \
pylint3 \
python \
python3-apport \
Expand Down
Loading