Closed Themaister closed 8 years ago
Can you post what compiler and version you are using?
GCC 6.1.1 on x64 and 4.8.4 on ARMv7.
The generated file parameter_validation.h is not up to date with the non-generated files from commit 2ad4493. It is unusual that parameter_validation.h is being found in layers/ instead of dbuild/layers/ or build/layers/. Perhaps in the past you did a non-standard command like
./update_external_sources.sh; cmake -H. -B. -DCMAKE_BUILD_TYPE=Debug; make
that created a layers/parameter_validation.h file. Then when you did a normal
./update_external_sources.sh; cmake -H. -Bdbuild -DCMAKE_BUILD_TYPE=Debug; cd dbuild; make
the old generated header files left behind in the layers/ directory were found before the current generated files in dbuild/layers. You could clear out any troublesome old files with git clean -fdx
and try a normal build sequence as stated in BUILD.md.
Cloning a fresh repo fixed the issue.
Commit: 2ad4493189171 OS: Linux x64 and ARMv7
Trying to build, but just getting build errors. Can't see anything obvious.