Sometimes the build time is long , and the old log in console will been overwrite,
so redirect the build make log in to an file is a good way to debug build problem.
(1)
make 2>&1 | tee BUILD_OPENWRT_LOG.TXT
(2)
make V=99 2>&1 | tee BUILD_OPENWRT_LOG.TXT