1

我正在尝试为 Ezsdk sitara linux 6.0 交叉编译 CUPS,
我跟着

source /home/shihab/ti-sdk-beagleboard-06.00.00.00/linux-devkit/environment-setup

./configure --host=i686 

make

但是在 make 命令上它显示错误。日志的错误部分:

Making all in cups...
Compiling adminutil.c...
In file included from cups-private.h:29:0,
                 from adminutil.c:33:
http-private.h:299:3: error: unknown type name ‘gss_OID’
http-private.h:300:3: error: unknown type name ‘gss_ctx_id_t’
http-private.h:301:3: error: unknown type name ‘gss_name_t’
cc1: warning: unrecognized command line option "-Wno-tautological-compare" [enabled by default]
make[1]: *** [adminutil.o] Error 1
make: *** [all] Error 1
[linux-devkit]:~/cups-1.7.0> 

进行交叉编译需要做什么?

4

1 回答 1

1

configure您对脚本的调用是错误的。对于交叉编译,--host应该是你的交叉编译器的前缀。例如:

./configure --host=arm-linux-gnueabi

此外,您可能需要将一些选项传递给 CUPS 的配置脚本以禁用某些组件。例如,--disable-gssapi将禁用对 Kerberos 的支持并可能修复您的“gss”错误。

于 2013-10-25T07:50:49.023 回答