Commit 19a10d79 authored by Jai Menon's avatar Jai Menon Committed by Robert Kimball

Move header resource to .rodata (#344)

This avoids bloating .data and clears the path
for code model fixes later
parent 603a7d1a
......@@ -154,7 +154,7 @@ int main(int argc, char** argv)
out << "#include <vector>\n";
out << "namespace ngraph\n";
out << "{\n";
out << " uint8_t header_resources[] =\n";
out << " static const uint8_t header_resources[] =\n";
out << " {\n";
vector<pair<size_t, size_t>> offset_size_list;
size_t offset = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment