해당 에러는 glibc 2.26~2.27 version과 관련된 문제 같다.

해당 에러를 매뉴얼하게 고치기 위해서는 /usr/include/bits/floatn.h 파일을 조금 수정하면 된다.

 

original code

#if (defined __x86_64__                                                 \
     ? __GNUC_PREREQ (4, 3)                                             \
     : (defined __GNU__ ? __GNUC_PREREQ (4, 5) : __GNUC_PREREQ (4, 4)))
# define __HAVE_FLOAT128 1
#else
# define __HAVE_FLOAT128 0
#endif

 

modified code

#if (defined __x86_64__                                                 \
     ? __GNUC_PREREQ (4, 3)                                             \
     : (defined __GNU__ ? __GNUC_PREREQ (4, 5) : __GNUC_PREREQ (4, 4)))
//# define __HAVE_FLOAT128 1
//#else
# define __HAVE_FLOAT128 0
#endif

 

'linux' 카테고리의 다른 글

python read file from the bottom  (0) 2019.10.10
running valgrind on gentoo  (0) 2019.03.13
vivado execution through rofi  (0) 2019.01.31
ubuntu 설정들  (0) 2019.01.21
xserver error fix after gentoo system upgrade  (0) 2019.01.09

+ Recent posts