Opened 7 years ago

Closed 6 years ago

#12103 closed Bugs (fixed)

Fix for gcc bug 58952

Reported by: joerg.krause@… Owned by: Raffi Enficiaud
Milestone: Boost 1.62.0 Component: test
Version: Boost 1.60.0 Severity: Problem
Keywords: gcc, uclibc Cc:

Description

getchar() is defined as a macro in uClibc. This hits gcc bug 58952 [1] for all gcc versions <= 4.8.2 and building boost/test fails:

./boost/test/impl/unit_test_main.ipp: In function 'int boost::unit_test::unit_test_main(boost::unit_test::init_unit_test_func, int, char**)':
./boost/test/impl/unit_test_main.ipp:194:18: error: expected unqualified-id before '(' token
To allow building boost/test with uClibc based toolchains with gcc <= 4.8.2 use
parenthesis for std::getchar.

To allow building boost/test with uClibc based toolchains with gcc <= 4.8.2 use parenthesis for std::getchar:

(std::getchar)();

PR: https://github.com/boostorg/test/pull/97

[1] https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58952

Change History (4)

comment:1 by Raffi Enficiaud, 7 years ago

Milestone: To Be DeterminedBoost 1.62.0
Owner: changed from Gennadiy Rozental to Raffi Enficiaud

comment:2 by Raffi Enficiaud, 6 years ago

Status: newassigned

comment:3 by Raffi Enficiaud, 6 years ago

On next-internal for testing

comment:4 by Raffi Enficiaud, 6 years ago

Resolution: fixed
Status: assignedclosed

Merged to master a38161dd316028d64f9dbf36168095470680a747

Note: See TracTickets for help on using tickets.