码迷,mamicode.com
首页 > 其他好文 > 详细

TUXEDO错误解决方案

时间:2016-03-28 18:40:39      阅读:371      评论:0      收藏:0      [点我收藏+]

标签:

错误1:

root@tfjus:/opt/tuxedo/simpapp# buildclient -f simpcl.c -o simpcl
simpcl.c: In function ‘main‘:
simpcl.c:43:12: warning: incompatible implicit declaration of built-in function ‘strlen‘ [enabled by default]
sendlen = strlen(argv[1]);
^
simpcl.c:60:9: warning: incompatible implicit declaration of built-in function ‘strcpy‘ [enabled by default]
(void) strcpy(sendbuf, argv[1]);
^
/opt/tuxedo/tuxedo11gR1/lib/libengine.so: undefined reference to `dlopen‘
/opt/tuxedo/tuxedo11gR1/lib/libengine.so: undefined reference to `dlclose‘
/opt/tuxedo/tuxedo11gR1/lib/libengine.so: undefined reference to `dlerror‘
/opt/tuxedo/tuxedo11gR1/lib/libengine.so: undefined reference to `dlsym‘
collect2: error: ld returned 1 exit status
CMDTUX_CAT:512: ERROR: Cannot execute C compiler cc -I$TUXDIR/include -o simpcl -L${TUXDIR}/lib simpcl.c -ltux -lbuft -lfml -lfml32 -lengine -ldl -lpthread

遇见到这个错误,是因为ubuntu不是tuxedo支持的平台,在编译客户端程序的时候,需要执行下面的编译命令
buildclient -o simpcl -f "-Xlinker --no-as-needed simpcl.c"
具体解释请参见
https://forums.oracle.com/forums/thread.jspa?threadID=2344582

TUXEDO错误解决方案

标签:

原文地址:http://www.cnblogs.com/tufujie/p/5329899.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!