You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PCSX2 version:
Git release: 4de2df2 Description of the issue:
Compilation of pcsx2 with gcc8 in Fedora28 fails since _xgetbv is already defined
How to reproduce the issue:
install fedora 28 (with all of the relevant packages for compiling pcsx2)
build with ./build.sh --release --gtk3
the compilation fails as soon as common/include/x86emitter/x86_intrin.h is included
The issue can be fixed by adding in the aforementioned file a
#define _XSAVEINTRIN_H_INCLUDED
which prevents the inclusion of /usr/lib/gcc/x86_64-redhat-linux/8/include/xsaveintrin.h
but this is clearly a hack.
The text was updated successfully, but these errors were encountered:
PCSX2 version:
Git release: 4de2df2
Description of the issue:
Compilation of pcsx2 with gcc8 in Fedora28 fails since _xgetbv is already defined
How to reproduce the issue:
The issue can be fixed by adding in the aforementioned file a
#define _XSAVEINTRIN_H_INCLUDED
which prevents the inclusion of /usr/lib/gcc/x86_64-redhat-linux/8/include/xsaveintrin.h
but this is clearly a hack.
The text was updated successfully, but these errors were encountered: