Hi, I observed a boost compile error during creation of a linux system. I used make's '--silent' option. According to boost, the '-d' option must be followed by a digit. Therefore, the following lines inside boost.mk: # how verbose should the build be? BOOST_OPTS += $(if $(QUIET),-d,-d+1) HOST_BOOST_OPTS += $(if $(QUIET),-d,-d+1) should be: # how verbose should the build be? BOOST_OPTS += $(if $(QUIET),-d0,-d+1) HOST_BOOST_OPTS += $(if $(QUIET),-d0,-d+1)
Fixed by https://git.buildroot.org/buildroot/commit/?id=7bd277572e695ce390b52d0dec03fa8ee5485f64. Thanks!