Hi,
I just wrote a simple console application to test if the machine has SGX feature (by calling sgx_is_capable function), and if so, to try to enable it programmatically (by calling sgx_enable_device function). Note that the application is not an enclave and does not use an enclave either. It works perfectly on my machine (which has SGX feature, as well as both VS2012 and SGX SDK installed). Now my question is how to deploy it on client's machine. What dependencies does the application need to execute? I cannot get it running by just copy and paste (error 0xc00007b). Thanks in advance.
Regards
Link Copied
sgx_enable_device() requires the platform software installed on the device.
sgx_cap_enable_device() does not have this requirement, but does require the sgx_capable.dll to be present as well as admin privileges.
sgx_enable_device() requires the platform software installed on the device.
sgx_cap_enable_device() does not have this requirement, but does require the sgx_capable.dll to be present as well as admin privileges.
Got it. Thanks Francisco.
For more complete information about compiler optimizations, see our Optimization Notice.