Edgeless RT is an SDK and a runtime for Intel SGX. It combines top-notch Go support with simplicity, robustness and a small TCB. Developing confidential microservices has never been easier! C++17 and Rust (experimental) are also supported.
I followed the document here:
and when I execute cmake .. under the build. it will report the error:
CMake Error at CMakeLists.txt:17 (add_executable):
Target "enclave" links to target "openenclave::ertdeventry" but the target
was not found. Perhaps a find_package() call is missing for an IMPORTED
target, or an ALIAS target is missing?
I have checked the CmakeList.
target_link_libraries(enclave openenclave::oeenclave openenclave::ertdeventry
${CMAKE_BINARY_DIR}/hello.a)
This command requires to link the openenclave:;ertdeventry. but when I checked the file under openenclave/cmake, it shows like that
there is no openenclave::ertdeventry.
I followed the document here: and when I execute cmake .. under the build. it will report the error: CMake Error at CMakeLists.txt:17 (add_executable): Target "enclave" links to target "openenclave::ertdeventry" but the target was not found. Perhaps a find_package() call is missing for an IMPORTED target, or an ALIAS target is missing?
I have checked the CmakeList. target_link_libraries(enclave openenclave::oeenclave openenclave::ertdeventry ${CMAKE_BINARY_DIR}/hello.a) This command requires to link the openenclave:;ertdeventry. but when I checked the file under openenclave/cmake, it shows like that there is no openenclave::ertdeventry.
anyone knows? :(