README 2.1 KB

1234567891011121314151617181920212223242526272829
  1. Please, download the latest gperftools code from: https://github.com/gperftools/gperftools
  2. The Intel(R) Software Guard Extensions (Intel(R) SGX) tcmalloc is based on gperftools-2.5 (the latest version avaialble at the release date).
  3. Do the following to enable tcmalloc in Intel(R) SGX:
  4. 1. Copy libsgx_tcmalloc.a to the Intel(R) SGX SDK installation directory.
  5. 2. Add "-Wl,--whole-archive -lsgx_tcmalloc -Wl,--no-whole-archive" into enclave linking options in the Makefile.
  6. For example:
  7. Enclave_Link_Flags := $(SGX_COMMON_CFLAGS) -Wl,--no-undefined -nostdlib -nodefaultlibs -nostartfiles -L$(SGX_LIBRARY_PATH) \
  8. -Wl,--whole-archive -l$(Trts_Library_Name) -Wl,--no-whole-archive \
  9. -Wl,--whole-archive -lsgx_tcmalloc -Wl,--no-whole-archive \
  10. -Wl,--start-group -lsgx_tstdc -lsgx_tstdcxx -l$(Crypto_Library_Name) -l$(Service_Library_Name) -Wl,--end-group \
  11. -Wl,-Bstatic -Wl,-Bsymbolic -Wl,--no-undefined \
  12. -Wl,-pie,-eenclave_entry -Wl,--export-dynamic \
  13. -Wl,--defsym,__ImageBase=0 \
  14. -Wl,--version-script=Enclave/Enclave.lds
  15. NOTE: The flags "-Wl,--whole-archive -lsgx_tcmalloc -Wl,--no-whole-archive" must be inserted before "-Wl,--start-group -lsgx_tstdc -lsgx_tstdcxx -Wl,--end-group".
  16. Otherwise, the enclave build will fail.
  17. 3. Set the enclave HeapMaxSize equal or larger than 0x900000 in Enclave.config.xml. For example:
  18. <HeapMaxSize>0x900000</HeapMaxSize>
  19. Intel(R) SGX SDK includes a C++ library based on STLPort (sgx_tstdcxx) and a modern one based on libcxx (sgx_tcxx).
  20. By default, the trusted TCMalloc library uses sgx_tcxx. However, you may change that by editing "./gperftools-2.5/autogen-linux.sh".
  21. From:
  22. CPPFLAGS="-I../../../common/inc -I../../../common/inc/tlibc -I../../../common/inc/internal/ -I../../../sdk/tlibcxx/include -I../../../sdk/trts/"
  23. To:
  24. CPPFLAGS="-I../../../common/inc -I../../../common/inc/tlibc -I../../../common/inc/internal/ -I../../../sdk/tlibstdcxx/stlport -I../../../sdk/trts/"
  25. Note that if your enclave links with sgx_tcmalloc, you must use the same C++ library you choose to build tcmalloc with. Otherwise, the target enclave build will fail.