aboutsummaryrefslogtreecommitdiff
path: root/src/armnnTfLiteParser/test/ParserFlatbuffersFixture.hpp
diff options
context:
space:
mode:
authorRob Hughes <robert.hughes@arm.com>2019-12-20 17:43:16 +0000
committerDerek Lamberti <derek.lamberti@arm.com>2019-12-31 09:54:23 +0000
commitff3c426ffd799abd66e4280da559384d86702721 (patch)
tree9fbee031285d57ea32afc6e2d86a5aace9466a2b /src/armnnTfLiteParser/test/ParserFlatbuffersFixture.hpp
parentfc6bf05e536ee352a1b304c6acff36c6b9ea0ead (diff)
downloadarmnn-ff3c426ffd799abd66e4280da559384d86702721.tar.gz
Replace Schema.s with generated .cpp file
This removes the dependency on an assembler (which must support .incbin). Instead we use xxd as a custom build command to generate a .cpp file which is included in the build. This makes it possible to build on Windows, for which you need cp.exe (from GNU Core Utils) and xxd.exe (from Vim). Change-Id: I3a929640b1fdbfc27e2c38abd05bf3a298245ba5 Signed-off-by: Robert Hughes <robert.hughes@arm.com>
Diffstat (limited to 'src/armnnTfLiteParser/test/ParserFlatbuffersFixture.hpp')
-rw-r--r--src/armnnTfLiteParser/test/ParserFlatbuffersFixture.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/armnnTfLiteParser/test/ParserFlatbuffersFixture.hpp b/src/armnnTfLiteParser/test/ParserFlatbuffersFixture.hpp
index acca01b14a..797e11e403 100644
--- a/src/armnnTfLiteParser/test/ParserFlatbuffersFixture.hpp
+++ b/src/armnnTfLiteParser/test/ParserFlatbuffersFixture.hpp
@@ -101,7 +101,7 @@ struct ParserFlatbuffersFixture
bool ReadStringToBinary()
{
- std::string schemafile(&tflite_schema_start, &tflite_schema_end);
+ std::string schemafile(g_TfLiteSchemaText, g_TfLiteSchemaText + g_TfLiteSchemaText_len);
// parse schema first, so we can use it to parse the data after
flatbuffers::Parser parser;