我遇到了一个奇怪的“未定义的引用”编译错误,我似乎无法找到解决方案。我正在尝试使用Yocto Project生成的ARM编译器(arm-poky-linux-gnueabi-gcc)为我的Gumstix Overo配置/编译PAM 1.1.6,但是在编译期间我一直收到以下错误:
.libs/pam_rhosts.o: In function `pam_sm_authenticate':
modules/pam_rhosts/pam_rhosts.c:117: undefined reference to `ruserok'
collect2: error: ld returned 1 exit status
所以,我做了一些调查,发现在配置期间,编译并执行以下测试代码以确定ruserok,ruserok_af和iruserok的可用性。
/* end confdefs.h. */
/* Define $2 to an innocuous variant, in case <limits.h> declares $2.
For example, HP-UX 11i <limits.h> declares gettimeofday. */
#define $2 innocuous_$2
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char $2 (); below.
Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
<limits.h> exists even on freestanding compilers. */
#ifdef __STDC__
# include <limits.h>
#else
# include <assert.h>
#endif
#undef $2
/* Override any GCC internal prototype to avoid an error.
Use char because int might match the return type of a GCC
builtin and then its argument prototype would still apply. */
#ifdef __cplusplus
extern "C"
#endif
char $2 ();
/* The GNU C library defines this for functions which it implements
to always fail with ENOSYS. Some functions are actually named
something starting with __ and the normal name is an alias. */
#if defined __stub_$2 || defined __stub___$2
choke me
#endif
int
main ()
{
return $2 ();
;
return 0;
}
所以,我复制,粘贴(用ruserok替换所有2美元)并使用生成的GCC编译器编译此代码
./arm-poky-linux-gnueabi-gcc -o test.o test.c
查看ruserok,ruserok_af和iuserok函数是否存在,并且收到以下编译错误:
/tmp/ccU8YszI.o: In function `main':
test.c:(.text+0x8): undefined reference to `ruserok'
collect2: error: ld returned 1 exit status
,与上面的“ruserok'错误引用相同”。作为一个完整性检查,由于我之前通过Ubuntu软件中心安装了Ubuntu / Linaro ARM GCC编译器,我使用arm-linux-gnueabi-gcc编译器编译了相同的代码,但代码编译良好而没有任何错误。这里是我用来参考的命令:
arm-linux-gnueabi-gcc -o test.o test.c
答案 0 :(得分:0)
编译器(特别是gcc
)不仅仅是代码生成器。他们非常熟悉 libc ,或标准C
库以及 libgcc 编译器帮助程序库。常规命令行隐式使用-lc
(与 libc 链接)。来自Ubuntu的arm-linux-gnueabi-gcc
是一个带有 eglibc 的crosstool-ng构建。
我不知道Poky gcc的含义。您可以提供指向编译器所在位置的链接。从Poky configuration link开始,编译器似乎是一个多lib分发或其他东西,并且可能需要执行其他步骤来配置交叉构建。
问题的答案,
为什么一个编译器会产生“对ruserok的未定义引用”错误,而另一个编译器却没有?
因为库中有ruserok
而另一个没有(或未配置为查看)。