commit | 3d544c09b33aff628c0209aa8a6568abd5fb2f7c | [log] [tgz] |
---|---|---|
author | Jerome Forissier <jerome.forissier@linaro.org> | Wed Dec 13 19:56:02 2017 +0100 |
committer | Jérôme Forissier <jerome.forissier@linaro.org> | Wed Dec 13 21:40:55 2017 +0100 |
tree | f96a675a70eec985fbe39a2497963c8986cb5bb1 | |
parent | f206ea14a4eb852beea063b306b00b3db1321c31 [diff] |
optee_random: fix compilation error with GCC 4.9 Fixes the following error: main.c:95:2: error: 'for' loop initial declarations are only allowed in C99 or C11 mode for (int i = 0; i < 16; i++) ^ main.c:95:2: note: use option -std=c99, -std=gnu99, -std=c11 or -std=gnu11 to compile your code Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org> Reviewed-by: Joakim Bech <joakim.bech@linaro.org>
This document describes the sample applications that are included in the OP-TEE, that aim to showcase specific functionality and use case.
For sake of simplicity, all OP-TEE example test application are prefixed with optee_example_
.
Directory hello_world/:
optee_example_hello_world
Directory random/:
TEE_GenerateRandom()
).optee_example_random
Directory aes/:
optee_example_aes
TA basics documentation presents the basics for implementing and building an OP-TEE trusted application.
One can also refer to the examples provided: source files and make scripts.