Created
August 21, 2019 18:23
-
-
Save aghosn/83d52826b4095b54b38565a3d84879af to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-load("//third_party/linux_sgx:sgx_sdk.bzl", "sgx_enclave") | |
+load("//third_party/linux_sgx:sgx_sdk.bzl", "sgx_enclave", "sgx_enclave_configuration") | |
+sgx_enclave_configuration( | |
+ name = "demo_enclave_configuration", | |
+ heap_max_size = "0x6400000", | |
+) | |
sgx_enclave( | |
name = "demo_enclave", | |
srcs = [ | |
... | |
], | |
+ config = ":demo_enclave_configuration", | |
deps = [... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment