From db4f2cf97ce6a13149a57aca6830072fb45a3a3f Mon Sep 17 00:00:00 2001 From: Wouter van Oortmerssen <wvo@google.com> Date: Mon, 30 Nov 2015 16:42:48 -0800 Subject: [PATCH] Multiple schemas parsed by flatc are now parsed independently. It used to be such that later schemas could depend on earlier schemas. This was a convenience from days before include files were implemented. Nowadays they cause subtle bugs rather than being useful, so this functionality has been removed. You now need to explicitly include files you depend upon. Change-Id: Id8292c3c621fc38fbd796da2d2cbdd63efc230d1 Tested: on Linux. --- md__compiler.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/md__compiler.html b/md__compiler.html index ff3f7fe2..1b3cd1db 100644 --- a/md__compiler.html +++ b/md__compiler.html @@ -63,8 +63,8 @@ $(document).ready(function(){initNavTree('md__compiler.html','');}); <div class="contents"> <div class="textblock"><p>Usage: </p><pre class="fragment">flatc [ GENERATOR OPTIONS ] [ -o PATH ] [ -I PATH ] [ -S ] FILES... [ -- FILES...] -</pre><p>The files are read and parsed in order, and can contain either schemas or data (see below). Later files can make use of definitions in earlier files.</p> -<p><code>--</code> indicates that the following files are binary files in FlatBuffer format conforming to the schema(s) indicated before it. Incompatible binary files currently will give unpredictable results (!)</p> +</pre><p>The files are read and parsed in order, and can contain either schemas or data (see below). Data files are processed according to the definitions of the most recent schema specified.</p> +<p><code>--</code> indicates that the following files are binary files in FlatBuffer format conforming to the schema indicated before it.</p> <p>Depending on the flags passed, additional files may be generated for each file processed:</p> <p>For any schema input files, one or more generators can be specified:</p> <ul> -- GitLab