ChinaUnix.net
相关文章推荐:

solaris编译TAO

ace 5.5 tao 1.5 make: 3.80 hp-ux: 11.11 用aCC在hp-ux11.11下编译ace 但是make时出现问题 好像是aCC不支持 -pthread 我如何可以在configure的时候不把-pthread 写入makefile? 或者有其他解决方法?谢谢 /usr/bin/ld: Unrecognized argument: -pthread /usr/bin/ld: Usage: /usr/bin/ld [options] [flags] files *** Error exit code 1 Stop. [ 本帖最后由 coolfire666 于 2007-8-13 14:15 编辑 ]

by coolfire666 - HP-UX - 2007-08-17 15:20:56 阅读(3568) 回复(5)

相关讨论

我在HPUX unix 下编译tao出现以下错误,请各位大虾帮忙 顺便说一下我用的make版本是3.81 拦截的错误信息如下 GNUmakefile: /opt/tao/ACE_wrappers/tao/orbsvcs/orbsvcs/GNUmakefile.CosNaming_IDL MAKEFLAGS=w ../../../bin/tao_idl -Ge 1 -Wb,pre_include=ace/pre.h -Wb,post_include=ace/post.h -I/opt/tao/ACE_wrappers/tao -I/opt/tao/ACE_wrappers/tao/orbsvcs -Wb,versioning_begin=tao_BEGIN_VERSIONED_NAMESPACE_DECL -Wb...

by zyc911 - HP-UX - 2007-06-05 09:15:40 阅读(1320) 回复(0)

提示libtao_IDL_FE.a找不到,但已经将LD_LIBRARY_PATH没为其所在的目录了,将其拷贝到当前目录是可以的,不知道为何 ../../../bin/tao_idl -Ge 1 -Wb,pre_include=ace/pre.h -Wb,post_include=ace/post.h -I/data6/ACE_wrappers/tao -I/data6/ACE_wrappers/tao/orbsvcs -Wb,versioning_begin=tao_BEGIN_VERSIONED_NAMESPACE_DECL -Wb,versioning_end=tao_END_VERSIONED_NAMESPACE_DECL -Wb,stub_export_macro=tao_Naming_Export -...

by alpbrook - AIX - 2006-08-17 12:03:53 阅读(1119) 回复(0)

链接时指定了.sl库 -L$(ACE_ROOT)/ace -ltao_CosNotification -tao_CosNaming -ltao_Svc_Utils -ltao_IORTable -ltao_Messaging -ltao_PortableServer -ltao_Valuetype -ltao_ObjRefTemplate -ltao_IORInterceptor -ltao -lACE 链接成功后程序运行不起来,报了一堆Unresolved symbol,比如: /usr/lib/dld.sl: Unresolved symbol: cerr__3std (data) from /home/duanll/ACE_wrappers/ace/libACE.sl 用ldd -r查,输出一堆symbol...

by losfound - HP-UX - 2005-07-17 21:52:55 阅读(986) 回复(1)

编译信息如下: make[1]: Entering directory `/e/ace_wrappers/ace' Makefile: /e/ace_wrappers/ace/Makefile.ace g++ -W -Wall -Wpointer-arith -mcpu=pentiumpro -mthreads -O3 -g -pipe -fno-exc eptions -fcheck-new -IE:\ACE_wrappers -D__ACE_INLINE__ -DACE_BUILD_DLL -DACE_O S_BUILD_DLL -c -o .shobj/ARGV.o ARGV.cpp ARGV.cpp:6:22: ace/ARGV.h: No such file or directory ARGV.cpp:12:25: ace/Log_Msg.h: No ...

by king_yan - Shell - 2005-05-26 16:46:13 阅读(2668) 回复(1)

编译信息如下: make[1]: Entering directory `/e/ace_wrappers/ace' Makefile: /e/ace_wrappers/ace/Makefile.ace g++ -W -Wall -Wpointer-arith -mcpu=pentiumpro -mthreads -O3 -g -pipe -fno-exc eptions -fcheck-new -IE:\ACE_wrappers -D__ACE_INLINE__ -DACE_BUILD_DLL -DACE_O S_BUILD_DLL -c -o .shobj/ARGV.o ARGV.cpp ARGV.cpp:6:22: ace/ARGV.h: No such file or directory ARGV.cpp:12:25: ace/Log_Msg.h: No such ...

by king_yan - C/C++ - 2005-02-13 12:47:15 阅读(907) 回复(0)

solaris编译Python   因为安装mod_python的原因,需要自己编译python,一般的流程是下载源代码,解压,configure,make ,make install,但是因为是在solaris(2.9-Sparc)上,就出现了不少问题:(以下是编译安装过程中,出现过的一些问题。   1.因为solaris的tar原因,俺在解压就碰到了问题,我的使用经验是尽量不要用solaris自带的tar解压从Internet上下载For Linux/Unix的开源代码,好象是因为标准的不同,反正用solaris的...

by gslsok - Solaris文档中心 - 2008-04-21 20:27:44 阅读(995) 回复(0)

如何在solaris 2.6下进行源码程序的安装,需要什么环境 我想安装PPP-2.4.1提示如下: make cd chat; make all cd pppd; make all cc -I../include -DSVR4 -DSOL2 -O -Xa -xO2 -xspace -W0,-Lt -DPLUGIN -c main.c ucbcc: Warning: "-Xa" redefines compatibility mode from "SunC transition" to "ANSI" ucbcc: Warning: Option -W0,-Lt passed to ld, if ld is invoked, ignored otherwise License Error : Cannot find licens...

by Lilo - Solaris - 2004-04-26 14:17:01 阅读(883) 回复(0)

近来需要在solaris上工作一段时间, 所以需要使用solaris上的工具. 习惯了在Linux下的工具后, 突然发现许多solaris上的工具和linux差别甚大. 自带的sed和awk即是如此,以前在linux下用的sed/awk都出错, 由于我不想再熟悉一套新的sed/awk语法,故而,我就需要在solaris上安装gnu sed. 当运行完configure后,系统给出如下提示: checking for GNU gettext in libc... no checking for GNU gettext in libintl... no configure: creatin...

by winter.zhang - Solaris文档中心 - 2009-02-26 16:21:56 阅读(1855) 回复(0)

出错信息: ======================== ld.so.1: ./gen_test_char: 致命的: libexpat.so.0: 打开失败: 无此文件或目录 *** Error code 137 make: Fatal error: Command failed for target `test_char.h' ...

by bluespray - Solaris文档中心 - 2006-08-19 22:07:01 阅读(827) 回复(0)

make all-recursive make[1]: Entering directory `/usr/local/src/tar-1.13' Making all in doc make[2]: Entering directory `/usr/local/src/tar-1.13/doc' make[2]: Leaving directory `/usr/local/src/tar-1.13/doc' Making all in lib make[2]: Entering directory `/usr/local/src/tar-1.13/lib' rm -f libtar.a ar cru libtar.a addext.o argmatch.o backupfile.o basename.o error.o exclude.o full-write.o getdate.o g...

by dupeng144 - Solaris - 2006-07-31 17:06:53 阅读(1590) 回复(3)