- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
Im trying to compile my edl file
enclave {
from "sgx_tstdc.edl" import *;
trusted {
/* define ECALLs here. */
public void store_secret([in,string] char *msg);
public int print_hash([out] sgx_status_t *error);
};
untrusted {
/* define OCALLs here. */
void o_print_hash([in] unsinged char hash[32]);
};
};
But it report an error like:
CUSTOMBUILD : error : c:\Users\administrator\documents\visual studio 2015\Projects\App first\Enclave_app1\Enclave_app1.edl(13,38): parse error
Im following offical tutorials and i don't know why.
Thanks for your helping
Link Copied
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
You have a typo in your code. That's the error you are obtaining. On line 13 you should change "unsinged" to "unsigned".
Rodolfo
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page