搜尋此網誌

How to debug make build ..

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