~wooksong/neural-network-support/+git/flatbuffers:v1.11.0_tizen

Last commit made on 2020-07-17
Get this branch:
git clone -b v1.11.0_tizen https://git.launchpad.net/~wooksong/neural-network-support/+git/flatbuffers

Branch merges

Branch information

Recent commits

6632ea2... 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>

fe20f20... 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>

19548ec... 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>

809eea6... 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>

9e7e8cb... by Wouter van Oortmerssen

Bumped version to 1.11.0

Change-Id: I0c87ad2cf8f8768cf40c5b7abea0add087a5518a

b72a75f... by =?utf-8?q?Cl=C3=A9ment_Julliard?= <email address hidden>

Doc: use correct ref types for flatcc string creation. (#5305)

Some string definitions were typed as ns(Weapon_ref_t) while they should
be flatbuffers_string_ref_t. Note that the former was also compiling &
running correctly as both ref types boil down to the same underlying ref
type.

6cfcd86... by Philipp Wollermann <email address hidden>

Don't test on Ubuntu 14.04 (#5302)

Ubuntu 14.04 is about to be end-of-life and Bazel CI will stop supporting it shortly afterwards.

Context: https://groups.google.com/d/msg/bazel-dev/_D6XzfNkQQE/8TNKiNmsCAAJ

ddb12c0... by Damien Lespiau <email address hidden>

[Javascript] Remove newly introduced trailing whitespace in flatbuffer.js (#5300)

* Remove newly introduced trailing whitespace in flatbuffer.js

The newly introduced clear function has some trailing white space in an
otherwise whitespace clean file. Remove it.

* Remove spurious new line in the BytesBuffer construction

Another spurious white space introduced by the clear() PR.

2032b94... by Wouter van Oortmerssen

Fixed file access test in the wrong location.

Change-Id: I520339b442306204563d97743efe988eab459c08

860dc80... by Damien Lespiau <email address hidden>

docs: Fix where to find the Typescript typings (#5298)

This is what currently rendered:

  /flatubffers

in https://google.github.io/flatbuffers/flatbuffers_guide_use_typescript.html

Besides the typo, @types is being swallowed, the hope is that puting it between
backticks will improve the situation.