flatbuffers
flatbuffers copied to clipboard
Windows segfault with recursive Struct
The following fbs schema will crash flatc.exe. No errors, just a segfault.
namespace MySample.Recurse
struct RecurseType{
id: ubyte;
recurse_type: RecurseType;
}
Windows 11, 24H2 Current master branch, commit 1c514626e83c20fffa8557e75641848e1e15cd5e
as an additional data point, this runs fine (makes a file that fails static assertions) on linux.
@0xNF what language/flags did you use for this? I finally got around to building flatbuffers on windows and did not encounter a crash
closing as duplicate since it references the same underlying problem