Intel® C++ Compiler
Community support and assistance for creating C++ code that runs on platforms based on Intel® processors.

__uint128_t throws compile error in intel c++ compiler

Divya_S_
Beginner
637 Views

Hi All,
I am trying to compile some code using intel c++ compiler in windows. 
But I am keep getting compile error for __uint128_t datatype - error: identifier "__uint128_t" is undefined.
The same code compiles successfully with gcc. Does it mean intel compiler does not have support for __uint128_t data type in windows?
Somebody please help to overcome this failure as soon as possible.
Thanks,
Divya

0 Kudos
1 Reply
TimP
Honored Contributor III
637 Views

128 bit int is a gcc extension which can't support all the operations required of a standard data type.  Possible workarounds include m128 data types.  I don't know if intel has received feature requests on this or if it might be considered under a gcc compatibility switch.

0 Kudos
Reply