~wooksong/neural-network-support/+git/flatbuffers:sandbox/leemgs/v1.12.0

Last commit made on 2020-09-15
Get this branch:
git clone -b sandbox/leemgs/v1.12.0 https://git.launchpad.net/~wooksong/neural-network-support/+git/flatbuffers

Branch merges

Branch information

Name:
sandbox/leemgs/v1.12.0
Repository:
lp:~wooksong/neural-network-support/+git/flatbuffers

Recent commits

592bbb2... by Wook Song

[Dist/Debian] Fix unmet dependency on libgcc-s1 in the PPA package

Since PPA tries to use the latest gcc, the package released via PPA has
an issue related to the unmet dependency on libgcc-s1. To fix it, this
patch adds explicit build dependencies on gcc << 10.

Change-Id: If76cde33d9b6aaeb051894b55c22f256bddc9a36
Signed-off-by: Wook Song <email address hidden>

93e87ae... by Wook Song

[Dist/Debian] Bump up to v1.12.0

This patch makes the version of flatbuffers bump up to v1.12.0.

Change-Id: I458b6a54aaa35a01b71caa82cfad081dc599b53d
Signed-off-by: Wook Song <email address hidden>

83938a3... by Geunsik Lim <email address hidden>

Bump to flatbuffers 1.12.0

Change-Id: I228241b006edf9850e035a96b69fc6c305905280
Signed-off-by: Geunsik Lim <email address hidden>

531a286... by Semun Lee <email address hidden>

Add -fno-lto for creating static library

When -flto option is used, static library doesn't contain
symbol names in it.
It may leads "undefined symbol" problem in some applications.

Change-Id: I3ab5f644b72e504d9390311e4ce945d9ac28527e
Signed-off-by: Semun Lee <email address hidden>

b77b54b... by Wook Song

[Dist/Debian] Initial debianization for v1.11.0

Initial debianization for v1.11.0.

Change-Id: Ie27a37855e782277c60908ebea9b363d296d34a3
Signed-off-by: Wook Song <email address hidden>

e859e1c... by MyungJoo Ham

Re-ported build-error workaround from 1.6.0

There was a build-error fix in flatbuffers-1.6.0, which
was in bash build script. They appear to lose it when
they abandoned the bash build script.

The following is the commit message of the workaround
of flatbuffers 1.6.0 mainline:

Work around flatbuffers flaky build

The flatbuffers build ocasionally fails with the following error:

/flatbuffers/flatbuffers-1.6.0/src/idl_parser.cpp
/mnt/source/flatbuffers/flatbuffers-1.6.0/samples/sample_binary.cpp:19:17:
error: 'MyGame' has not been declared
 using namespace MyGame::Sample;
                 ^
/mnt/source/flatbuffers/flatbuffers-1.6.0/samples/sample_binary.cpp:19:25:
error: 'Sample' is not a namespace-name
 using namespace MyGame::Sample;
                         ^
/mnt/source/flatbuffers/flatbuffers-1.6.0/samples/sample_binary.cpp:19:31:
error: expected namespace-name before ';' token
 using namespace MyGame::Sample;
                               ^
/mnt/source/flatbuffers/flatbuffers-1.6.0/samples/sample_binary.cpp: In
function 'int main(int, const char**)':
/mnt/source/flatbuffers/flatbuffers-1.6.0/samples/sample_binary.cpp:25:3:
error: 'flatbuffers' has not been declared
   flatbuffers::FlatBufferBuilder builder;
   ^
/mnt/source/flatbuffers/flatbuffers-1.6.0/samples/sample_binary.cpp:28:26:
error: 'builder' was not declared in this scope
   auto weapon_one_name = builder.CreateString("Sword");
                          ^
...

Disabling the BUILD_TESTS target removes the flakiness and makes the
compilation faster.

Reviewed-on: http://gerrit.cloudera.org:8080/12886
Reviewed-by: Tim Armstrong <email address hidden>
Tested-by: Tim Armstrong <email address hidden>

Change-Id: Ica8300d7edad7d10adad311cc22c18b8987b1f9b
Signed-off-by: MyungJoo Ham <email address hidden>

956cb1e... by Parichay Kapoor <email address hidden>

[Dist/Tizen] Add rpm spec and manifest files to support GBS

This PR provides tizen packages, flatbuffers and flatbuffers-devel.

Signed-off-by: Parichay Kapoor <email address hidden>

6df40a2... by Wouter van Oortmerssen

pre-tag version bump for 1.12

Change-Id: I84a9365e9d8a1afe333b1df85058401ffe0a6b7c

0dba639... by mustiikhalil <email address hidden>

Removes the inner loop in the endtable check written tables (#5803)

0e3fdd0... by Marc Butler <email address hidden>

Escape characters in jsonschema descriptions (#5644)

* Escape JSON Schema comments

* Add quotes to monster comment

Thus exercising the JSON Schema comment escape support.