Skip to content

Instantly share code, notes, and snippets.

@aghosn
Created August 21, 2019 18:23
Show Gist options
  • Save aghosn/83d52826b4095b54b38565a3d84879af to your computer and use it in GitHub Desktop.
Save aghosn/83d52826b4095b54b38565a3d84879af to your computer and use it in GitHub Desktop.
-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