Opened 7 years ago
Closed 6 years ago
#12103 closed Bugs (fixed)
Fix for gcc bug 58952
Reported by: | 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)();
Change History (4)
comment:1 by , 7 years ago
Milestone: | To Be Determined → Boost 1.62.0 |
---|---|
Owner: | changed from | to
comment:2 by , 6 years ago
Status: | new → assigned |
---|
comment:3 by , 6 years ago
comment:4 by , 6 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Merged to master a38161dd316028d64f9dbf36168095470680a747
Note:
See TracTickets
for help on using tickets.
On next-internal for testing