2016-09-17 23:47:12 |
Ioann |
description |
Hi
I think there is a problem in g++ compiler libs.
I tried to compile https://github.com/dreamstalker/rehlds
On one of installation steps rehlds compiles own bzip2 that uses random.h from system libs with g++.
And it fails with message
/usr/include/c++/4.8/random.h(106): error expected a ";"
{typedef unsigned __int128 type;};
^
If i set ";" or remove "type;" compilation succeeds without errors.
Either it is simple copy-paste error or problem with "random.h" |
Hi
I think there is a problem in g++ compiler libs.
I tried to compile https://github.com/dreamstalker/rehlds
On one of installation steps rehlds compiles own bzip2 that uses random.h from system libs with g++.
And it fails with message
/usr/include/c++/4.8/bits/random.h(106): error expected a ";"
{typedef unsigned __int128 type;};
^
If i set ";" or remove "type;" compilation succeeds without errors.
Either it is simple copy-paste error or problem with "random.h" |
|