__ int128 is protected
! defined ( STRICT_ANSI ) && & & defined (_GLIBCXX_USE_INT128)
So, you can use -ansi (in case your code is strictly ansi C ++ complaint), I ran into errors in the linker due to the linker being unable to find 32-bit libraries.
_GLIBCXX_USE_INT128
defined in "lib / gcc / x86_64-w64-mingw32 / 4.8.1 / include / C ++ / x86_64-w64-mingw32 / bits / C ++ config.h", which I am sure was created by system-based autoconfiguration built tool chains.
Better download the 32-bit version on the mingw gcc (binary) package and install them too.
Sundar
source share