对“clock_gettime”的未定义引用,修改 makefile?
Undefined reference to `clock_gettime', modify makefile?
我知道这个问题已经在其他地方问过,例如 here,但我在那里找不到我的具体问题的解决方案。
我一直在尝试在 Linux 上安装软件 Ipopt,按照文档中的说明进行操作,但是当我 运行 make 时出现以下错误:
/obs/xxx/Ipopt-3.12.8/build/ThirdParty/ASL/.libs/libcoinasl.so: undefined reference to `clock_gettime'
collect2: ld returned 1 exit status
make[3]: *** [ipopt] Error 1
make[3]: Leaving directory `/xxx_home/xxx/Ipopt-3.12.8/build/Ipopt/src/Apps/AmplSolver'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/xxx_home/xxx/Ipopt-3.12.8/build/Ipopt/src/Apps'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/xxx_home/xxx/Ipopt-3.12.8/build/Ipopt'
make: *** [all-recursive] Error 1
根据上面的帖子,解决这个问题的方法是包括 -lrt 标志,但我不知道我是否应该将它插入 make 文件中,在什么 makefile 中,以及在 makefile 中的确切位置。仅供参考,这是我一直在使用的 Ipopt archive,您可以在其中找到 Makefile,这是关于我的 linux 发行版
的一些信息
$ uname -or
3.2.0-0.bpo.4-amd64 GNU/Linux
$ lsb_release -irc
Distributor ID: Debian
Release: 6.0.10
Codename: squeeze
谢谢。
ipopt 我看到配置了 configure script, reading help from that script 我想你可以 ADD_CFLAGS 编译器标志:
ADD_CFLAGS=-lrt ./configure
然后运行制作。
我知道这个问题已经在其他地方问过,例如 here,但我在那里找不到我的具体问题的解决方案。
我一直在尝试在 Linux 上安装软件 Ipopt,按照文档中的说明进行操作,但是当我 运行 make 时出现以下错误:
/obs/xxx/Ipopt-3.12.8/build/ThirdParty/ASL/.libs/libcoinasl.so: undefined reference to `clock_gettime'
collect2: ld returned 1 exit status
make[3]: *** [ipopt] Error 1
make[3]: Leaving directory `/xxx_home/xxx/Ipopt-3.12.8/build/Ipopt/src/Apps/AmplSolver'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/xxx_home/xxx/Ipopt-3.12.8/build/Ipopt/src/Apps'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/xxx_home/xxx/Ipopt-3.12.8/build/Ipopt'
make: *** [all-recursive] Error 1
根据上面的帖子,解决这个问题的方法是包括 -lrt 标志,但我不知道我是否应该将它插入 make 文件中,在什么 makefile 中,以及在 makefile 中的确切位置。仅供参考,这是我一直在使用的 Ipopt archive,您可以在其中找到 Makefile,这是关于我的 linux 发行版
的一些信息$ uname -or
3.2.0-0.bpo.4-amd64 GNU/Linux
$ lsb_release -irc
Distributor ID: Debian
Release: 6.0.10
Codename: squeeze
谢谢。
ipopt 我看到配置了 configure script, reading help from that script 我想你可以 ADD_CFLAGS 编译器标志:
ADD_CFLAGS=-lrt ./configure
然后运行制作。