我正在尝试编译Donald EaSTLake(代码:http://kambing.ui.ac.id/minix/other/rfc3797/)的RFC 3797随机选择算法的实现。但是,我收到一个链接器错误:

rfc3797.c:(.text+0xe7f): undefined reference to `log'

我正在尝试使用提供的Makefile来实现它,该文件显式链接到数学库libraray,但是仍然出现错误:
cc -lm -o randomselection rfc3797.c MD5.c

如何编译该程序?

最佳答案

我不知道是什么原因,但是如果将-lm移到末尾,它将进行编译。

$ cc -o randomselection rfc3797.c MD5.c -lm
rfc3797.c: In function ‘getinteger’:
rfc3797.c:183:3: warning: format not a string literal and no format arguments [-Wformat-security]

10-04 21:28