我在linux中构建ace 5.3时遇到了问题。我收到以下错误。
g++ -W -Wall -Wpointer-arith -pipe -O3 -g -Wno-uninitialized -fno-implicit-templates -DACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION -D_POSIX_THREADS -D_POSIX_THREAD_SAFE_FUNCTIONS -D_REENTRANT -I/home/vwickram/Ubuntu_Release/tmp/ACE_wrappers -DACE_HAS_EXCEPTIONS -L/home/vwickram/Ubuntu_Release/tmp/ACE_wrappers/ace -L./ -o gperf .obj/gperf.o .obj/Options.o .obj/Iterator.o .obj/Gen_Perf.o .obj/Key_List.o .obj/List_Node.o .obj/Hash_Table.o .obj/Bool_Array.o .obj/Vectors.o .obj/Version.o -lACE -ldl -lpthread
/home/vwickram/Ubuntu_Release/tmp/ACE_wrappers/ace/libACE.so: undefined reference to `aio_return'
/home/vwickram/Ubuntu_Release/tmp/ACE_wrappers/ace/libACE.so: undefined reference to `aio_read'
/home/vwickram/Ubuntu_Release/tmp/ACE_wrappers/ace/libACE.so: undefined reference to `aio_cancel'
/home/vwickram/Ubuntu_Release/tmp/ACE_wrappers/ace/libACE.so: undefined reference to `aio_error'
/home/vwickram/Ubuntu_Release/tmp/ACE_wrappers/ace/libACE.so: undefined reference to `aio_write'
/home/vwickram/Ubuntu_Release/tmp/ACE_wrappers/ace/libACE.so: undefined reference to `aio_suspend'
collect2: ld returned 1 exit status
make[2]: *** [gperf] Error 1
make[2]: Leaving directory `/home/vwickram/Ubuntu_Release/tmp/ACE_wrappers/apps/gperf/src'
make[1]: *** [src.subdir] Error 2
make[1]: Leaving directory `/home/vwickram/Ubuntu_Release/tmp/ACE_wrappers/apps/gperf'
make: *** [all.nested] Error 2
当我用Google搜索时,我发现它是ace5.3中的一个错误,并在以后的版本中修复。所以我获得了ace 6.3版本并设法在linux中构建。但是,使用sunstudio 11编译器的SolarisX86中不会构建ace 6.3。我得到以下内容。
ACE::Monitor_Control::Monitor_Point_Registry*ACE_Singleton<ACE::Monitor_Control::Monitor_Point_Registry,ACE_Thread_Mutex>::instance() /home/vwickram/Ubuntu_Release/ace6.3/tmp/ACE_wrappers/lib/libACE.so
ld: fatal: Symbol referencing errors. No output written to ace_gperf
gmake[1]: *** [ace_gperf] Error 1
gmake[1]: Leaving directory `/home/vwickram/Ubuntu_Release/ace6.3/tmp/ACE_wrappers/apps/gperf/src'
gmake: *** [gperf] Error 2
有人可以帮忙吗?我仍然更喜欢使用ace 5.3版本并使用补丁修复bug并使其在linux上构建。
答案 0 :(得分:1)
我在ubuntu 14.04上面对Ace 5.5遇到了类似的问题。
我检查了整个控制台日志,但在 / usr / lib 和 librt.so.1 中找不到 librt.so EM> / LIB /
我搜索了这些并在 /usr/lib/x86_64-linux-gnu/librt.so 和 /lib/x86_64-linux-gnu/librt.so.1中找到了它们
我将它们复制到受尊重的文件夹中,然后它运行正常,没有任何错误。
在i386上,libm位于 /usr/lib/i386-linux-gnu/librt.so
答案 1 :(得分:0)
安装异步库。
例如在Fedora-linux中,它将是libaio-devel
。 (通常不需要,但如果没有安装可能会出现一些问题)
使用以下标志安装编译后。
cc file.c -lrt
-lrt
- link(lrt)读取时间库。