自从我使用 C 以来已经很长时间了,但现在我正在尝试编译一个从 Apache-Portable-Runtime (APR) 获取服务器统计信息的短脚本。
头文件位于 /usr/include/apr-1/apr*.h 和库位于 /usr/lib64/libapr-1.*
源文件可以在官方 APR 网站http://apr.apache.org/docs/apr/1.3/files.html上找到。
/* test.c */
#include <stdio.h>
#include <stdlib.h>
#include <apr_general.h>
#include <apr_time.h>
int main(int argc, const char *argv[])
{
apr_time_t t;
t = apr_time_now();
printf("The current time: %" APR_TIME_T_FMT "[us]\n", t);
return 0;
}
当我尝试编译时,出现以下错误(我认为这是一个链接问题):
~> gcc -Wall $(apr-1-config --cflags --cppflags --includes --link-ld) test.c -o test.bin /tmp/cc4DYD2W.o:在函数“主”中: test.c:(.text+0x10): undefined reference to `apr_time_now' collect2: ld 返回 1 个退出状态
我的环境是gentoo:
~> unname -a Linux alister 2.6.32.21-grsec-gt-r2 #1 SMP Tue Sep 7 23:54:49 PDT 2010\ x86_64 Intel(R) Xeon(R) CPU L5640 @ 2.27GHz GenuineIntel GNU/Linux` ~> gcc -v gcc 版本 4.3.4 (Gentoo 4.3.4 p1.1, pie-10.1.5) ~> 出现 --search "%@^dev-lib.*apr" * 开发库/apr 安装的最新版本:1.3.9 * 开发库/apr-util 安装的最新版本:1.3.9
有没有在 Linux 上对 C 有更多经验的人对我有什么建议可以让它工作?
一如既往地提前感谢。