gpt4 book ai didi

compiler-errors - CGAL 编译器错误 : undefined reference to `CGAL::assertion_fail(char const*, char const*, int, char const*)'

转载 作者:行者123 更新时间:2023-12-04 07:10:57 28 4
gpt4 key购买 nike

我是 CGAL 的新手,我在 Ubuntu 16.04 上使用 CGAL 4.7-4。我正在尝试编译并运行一个非常简单的 .cpp。这是代码:

#include <iostream>
#include <CGAL/Cartesian.h>

int main()
{
int p=2;
std::cout << "hello " << p << std::endl;
return 0;
}

我添加了行

#include <CGAL/Cartesian.h>

因为我想看看如何用更多的库编译。然后我在终端上写了这一行

g++ -lCGAL -lgmp prova.cpp

但是我得到了这个错误:

/tmp/cc9DA7Ml.o: In function 'CGAL::Interval_nt::Test_runtime_rounding_modes::Test_runtime_rounding_modes()':

prova.cpp:(.text._ZN4CGAL11Interval_ntILb0EE27Test_runtime_rounding_modesC2Ev[_ZN4CGAL11Interval_ntILb0EE27Test_runtime_rounding_modesC5Ev]+0xd2): undefined reference to 'CGAL::assertion_fail(char const*, char const*, int, char const*)'

prova.cpp:(.text._ZN4CGAL11Interval_ntILb0EE27Test_runtime_rounding_modesC2Ev[_ZN4CGAL11Interval_ntILb0EE27Test_runtime_rounding_modesC5Ev]+0x180): undefined reference to 'CGAL::assertion_fail(char const*, char const*, int, char const*)'

/tmp/cc9DA7Ml.o: In function 'CGAL::Interval_nt::Test_runtime_rounding_modes::Test_runtime_rounding_modes()':

prova.cpp:(.text._ZN4CGAL11Interval_ntILb1EE27Test_runtime_rounding_modesC2Ev[_ZN4CGAL11Interval_ntILb1EE27Test_runtime_rounding_modesC5Ev]+0xd2): undefined reference to 'CGAL::assertion_fail(char const*, char const*, int, char const*)'

prova.cpp:(.text._ZN4CGAL11Interval_ntILb1EE27Test_runtime_rounding_modesC2Ev[_ZN4CGAL11Interval_ntILb1EE27Test_runtime_rounding_modesC5Ev]+0x180): undefined reference to 'CGAL::assertion_fail(char const*, char const*, int, char const*)'

collect2: error: ld returned 1 exit status

即使我写了这些行中的任何一行,我也得到了同样的错误:

g++ -lCGAL -lmpfr -lgmp prova.cpp

g++ -I/opt/local/include -L/opt/local/lib -lCGAL -lgmp prova.cpp

g++ -I/opt/local/include -L/opt/local/lib/ -lCGAL -lgmp prova.cpp

g++ -I/usr/include -L/usr/bin -lCGAL -lgmp prova.cpp

g++ -I/usr/bin -L/usr/lib -lCGAL -lgmp prova.cpp

如果我写

g++ -lCartesian.a -lCGAL -lgmp prova.cpp

g++ -lCartesian -lCGAL -lgmp prova.cpp

终端报错

/usr/bin/ld: cannot find -lCartesian.a

collect2: error: ld returned 1 exit status

最后如果我写了

g++ -I/usr/include/CGAL -L/usr/include/CGAL -lCGAL -lgmp prova.cpp

我得到了一长串类似这样的错误:

In file included from /usr/include/CGAL/gmpxx_coercion_traits.h:35:0,

             from /usr/include/CGAL/mpz_class.h:29,
from /usr/include/CGAL/gmpxx.h:47,
from /usr/include/CGAL/is_convertible.h:28,
from /usr/include/CGAL/Rational_traits.h:31,
from /usr/include/CGAL/number_type_basic.h:48,
from /usr/include/CGAL/basic.h:44,
from /usr/include/CGAL/Cartesian/Cartesian_base.h:28,
from /usr/include/CGAL/Cartesian.h:28,
from prova.cpp:2:

/usr/include/mpfr.h:181:3: error: ‘mp_limb_t’ does not name a type mp_limb_t *_mpfr_d;

/usr/include/mpfr.h:279:1: error: ‘__GMP_DECLSPEC’ does not name a type __MPFR_DECLSPEC __gmp_const char * mpfr_get_version _MPFR_PROTO ((void));

[...]

In file included from /usr/include/CGAL/mpz_class.h:29:0,

             from /usr/include/CGAL/gmpxx.h:47,
from /usr/include/CGAL/is_convertible.h:28,
from /usr/include/CGAL/Rational_traits.h:31,
from /usr/include/CGAL/number_type_basic.h:48,
from /usr/include/CGAL/basic.h:44,
from /usr/include/CGAL/Cartesian/Cartesian_base.h:28,
from /usr/include/CGAL/Cartesian.h:28,
from prova.cpp:2:

/usr/include/CGAL/gmpxx_coercion_traits.h:43:3: error: ‘::__gmp_expr’ has not been declared

::__gmp_expr< T , U>,::__gmp_expr< T , U> >{

[...]

长长的列表是这样结束的:

In file included from /usr/include/CGAL/double.h:30:0,

             from /usr/include/CGAL/number_type_basic.h:60,
from /usr/include/CGAL/basic.h:44,
from /usr/include/CGAL/Cartesian/Cartesian_base.h:28,
from /usr/include/CGAL/Cartesian.h:28,
from prova.cpp:2:

/usr/include/CGAL/number_utils.h: In instantiation of ‘typename CGAL::Real_embeddable_traits::Is_finite::result_type CGAL::is_finite(const Real_embeddable&) [with Real_embeddable = double; typename CGAL::Real_embeddable_traits::Is_finite::result_type = CGAL::Null_tag]’:

/usr/include/CGAL/double.h:201:27: required from here

/usr/include/CGAL/number_utils.h:263:75: error: no match for call to ‘(CGAL::INTERN_RET::Real_embeddable_traits_base >::Is_finite {aka CGAL::Null_functor}) (const double&)’

return typename Real_embeddable_traits< Real_embeddable >::Is_finite()( x );

我在网上看了很多,我知道编译的链接部分有问题(核心没问题),但我真的不知道解决方案。你有什么主意吗?在此先感谢您的帮助。

最佳答案

g++ prova.cpp -lCGAL

有效...看来这只是一个顺序问题。

关于compiler-errors - CGAL 编译器错误 : undefined reference to `CGAL::assertion_fail(char const*, char const*, int, char const*)' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40607243/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com