当前位置:  技术问答>linux和unix

这是出什么错误了?

    来源: 互联网  发布时间:2017-04-13

    本文导语:  g++ -Wall -g -m32 -c main.cpp main.cpp: In function ‘void* ClientOnLine(void*)’: main.cpp:55: warning: unused variable ‘icomand’ main.cpp: In function ‘void process()’: main.cpp:132: warning: deprecated conversion from string constant to ‘char*’ main.cpp:...



g++ -Wall -g -m32 -c main.cpp
main.cpp: In function ‘void* ClientOnLine(void*)’:
main.cpp:55: warning: unused variable ‘icomand’
main.cpp: In function ‘void process()’:
main.cpp:132: warning: deprecated conversion from string constant to ‘char*’
main.cpp: In function ‘int main(int, char**)’:
main.cpp:171: warning: deprecated conversion from string constant to ‘char*’
main.cpp:171: warning: unused variable ‘p’
g++    -c -o FileManager.o FileManager.cpp
FileManager.cpp: In member function ‘char* FileInfo::getFileType()’:
FileManager.cpp:233: warning: deprecated conversion from string constant to ‘char*’
FileManager.cpp:237: warning: deprecated conversion from string constant to ‘char*’
FileManager.cpp:241: warning: deprecated conversion from string constant to ‘char*’
FileManager.cpp:245: warning: deprecated conversion from string constant to ‘char*’
FileManager.cpp:249: warning: deprecated conversion from string constant to ‘char*’
FileManager.cpp:265: warning: deprecated conversion from string constant to ‘char*’
FileManager.cpp:270: warning: deprecated conversion from string constant to ‘char*’
FileManager.cpp: In member function ‘int FileInfo::getIntFileType()’:
FileManager.cpp:283: warning: deprecated conversion from string constant to ‘char*’
FileManager.cpp:288: warning: deprecated conversion from string constant to ‘char*’
FileManager.cpp:293: warning: deprecated conversion from string constant to ‘char*’
FileManager.cpp:298: warning: deprecated conversion from string constant to ‘char*’
FileManager.cpp:303: warning: deprecated conversion from string constant to ‘char*’
FileManager.cpp:321: warning: deprecated conversion from string constant to ‘char*’
FileManager.cpp:327: warning: deprecated conversion from string constant to ‘char*’
FileManager.cpp: In member function ‘char* FileInfo::getFilePermissions()’:
FileManager.cpp:350: warning: address of local variable ‘descrip’ returned
FileManager.cpp: In member function ‘void FileInfo::showAllInfo()’:
FileManager.cpp:447: warning: deprecated conversion from string constant to ‘char*’
FileManager.cpp:448: warning: deprecated conversion from string constant to ‘char*’
FileManager.cpp:449: warning: deprecated conversion from string constant to ‘char*’
FileManager.cpp:450: warning: deprecated conversion from string constant to ‘char*’
FileManager.cpp:451: warning: deprecated conversion from string constant to ‘char*’
FileManager.cpp:456: warning: deprecated conversion from string constant to ‘char*’
FileManager.cpp:458: warning: deprecated conversion from string constant to ‘char*’
FileManager.cpp:475: warning: format ‘%ld’ expects type ‘long int’, but argument 2 has type ‘off_t’
FileManager.cpp:477: warning: format ‘%ld’ expects type ‘long int’, but argument 2 has type ‘__darwin_ino64_t’
FileManager.cpp:482: warning: format ‘%ld’ expects type ‘long int’, but argument 2 has type ‘blksize_t’
FileManager.cpp:483: warning: format ‘%ld’ expects type ‘long int’, but argument 2 has type ‘blkcnt_t’
g++ -Wall -g -m32 -c Filesearch.cpp
Filesearch.cpp: In function ‘void Search_File(char*, char*)’:
Filesearch.cpp:37: warning: format not a string literal and no format arguments
Filesearch.cpp:42: warning: suggest parentheses around assignment used as truth value
Filesearch.cpp:60: warning: format not a string literal and no format arguments
g++ -Wall -g -m32 -c SystemInfo.cpp
SystemInfo.cpp: In function ‘void get_ip(SYS_INFO*)’:
SystemInfo.cpp:41: warning: unused variable ‘hname’
SystemInfo.cpp: In function ‘int GetDeviceInfo(SYS_INFO*)’:
SystemInfo.cpp:157: warning: control reaches end of non-void function
g++ -Wall -g -m32 -c Socket.cpp
g++ main.o FileManager.o Filesearch.o SystemInfo.o Socket.o  -m32 -o server
ld: warning: ignoring file FileManager.o, file was built for unsupported file format which is not the architecture being linked (i386)
Undefined symbols for architecture i386:
  "FileInfo::FileInfo()", referenced from:
      _main in main.o
  "FileInfo::initFileInfo(char*)", referenced from:
      _main in main.o
  "FileInfo::initFileStruct()", referenced from:
      _main in main.o
  "FileInfo::showAllInfo()", referenced from:
      _main in main.o
ld: symbol(s) not found for architecture i386
collect2: ld returned 1 exit status
make: *** [server] Error 1



|
亲爱的大大,你编译“g++    -c -o FileManager.o FileManager.cpp”的时候忘记加参数-m32了。这样链接的时候根本就没有链接FileManager.o。

|

64位的时候库和32位的库不一样,那就说明64的库有这么些函数的
-m64 64位环境
-m32 32位环境
-Wall 允许发出GCC能够提供的所有有用的警告

    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。














站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,