Hi,
I'm newbie and need your big help to start with.
I'm following the toolchain quide provided by this link https://openwrt.org/docs/guide-developer/toolchain/use-buildsystem to build the image under version 19.07.10. I am targeting the x86 with Generic subtarget build for the Ubuntu 20.04 OS. I have preinstalled all the dependencies mentioned in build setup instructions for Debian. While invoking the make command to finish building I end up with the following output errors:
/home/taras/openwrt/build_dir/host/cmake-3.15.1/Source/cmWorkerPool.h:36:10: error: 'int64_t' in namespace 'std' does not name a type
36 | std::int64_t ExitStatus = 0;
| ^~~~~~~
/home/taras/openwrt/build_dir/host/cmake-3.15.1/Source/cmWorkerPool.h: In member function 'bool cmWorkerPool::ProcessResultT::error() const':
/home/taras/openwrt/build_dir/host/cmake-3.15.1/Source/cmWorkerPool.h:33:15: error: 'ExitStatus' was not declared in this scope
33 | return (ExitStatus != 0) || (TermSignal != 0) || !ErrorMessage.empty();
home/taras/openwrt/build_dir/host/cmake-3.15.1/Source/cmWorkerPool.cxx: In static member function 'static void cmUVReadOnlyProcess::UVExit(uv_process_t*, int64_t, int)':
/home/taras/openwrt/build_dir/host/cmake-3.15.1/Source/cmWorkerPool.cxx:303:20: error: 'struct cmWorkerPool::ProcessResultT' has no member named 'ExitStatus'
303 | proc.Result()->ExitStatus = exitStatus;
| ^~~~~~~~~~
I may assume I might have missed to install some setup packages but I can't figure out what those to be.