Bug 14951 - boost compile error when running make silently
Summary: boost compile error when running make silently
Status: RESOLVED FIXED
Alias: None
Product: buildroot
Classification: Unclassified
Component: Other (show other bugs)
Version: 2022.05.1
Hardware: All Linux
: P5 trivial
Target Milestone: ---
Assignee: unassigned
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2022-08-06 19:48 UTC by bundi78
Modified: 2022-08-07 12:37 UTC (History)
1 user (show)

See Also:
Host:
Target:
Build:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description bundi78 2022-08-06 19:48:20 UTC
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)