Re: Compiling GDB on Windows using mingw64 toolchain
Pedro Alves <[email protected]>
| Newsgroups | gmane.comp.gdb.devel |
|---|---|
| Message-ID | <[email protected]> |
On 03/04/2018 05:19 PM, Jan Vrany wrote: > C:/msys64/mingw64/include/c++/6.3.0/cwchar:139:11: error: expected > unqualified-id before 'int' > using ::wint_t; This probably means that something did "#define wint_t int" before we get here (or some #undef doesn't trigger), which makes the compiler see: using ::int; Thanks, Pedro Alves