微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

osx上的编译错误“未定义符号”

如何解决osx上的编译错误“未定义符号”

| 我正在osx上尝试一个非常简单的cpp程序,只是为了使自己熟悉osx平台,因此遇到任何错误消息令我感到非常惊讶。 这是代码
#include <iostream> 
using namespace std; 
int main() { 
  cout << \"Hello,world!\" << endl; 
  return 0; 
}
我通过运行来编译
gcc -Wall hello.cpp -o hello
然后,我收到以下“未定义符号”消息:
Undefined symbols:
  \"std::basic_ostream<char,std::char_traits<char> >& std::operator<< <std::char_traits<char> >(std::basic_ostream<char,std::char_traits<char> >&,char const*)\",referenced from:
      _main in ccA9oElQ.o
  \"std::ios_base::Init::Init()\",referenced from:
      __static_initialization_and_destruction_0(int,int)in ccA9oElQ.o
  \"std::basic_string<char,std::char_traits<char>,std::allocator<char> >::size() const\",referenced from:
      std::__verify_grouping(char const*,unsigned long,std::basic_string<char,std::allocator<char> > const&)in ccA9oElQ.o
  \"std::basic_string<char,std::allocator<char> >::operator[](unsigned long) const\",std::allocator<char> > const&)in ccA9oElQ.o
      std::__verify_grouping(char const*,std::allocator<char> > const&)in ccA9oElQ.o
  \"___gxx_personality_v0\",std::allocator<char> > const&)in ccA9oElQ.o
      _main in ccA9oElQ.o
      ___tcf_0 in ccA9oElQ.o
      unsigned long const& std::min<unsigned long>(unsigned long const&,unsigned long const&)in ccA9oElQ.o
      __static_initialization_and_destruction_0(int,int)in ccA9oElQ.o
      global constructors keyed to mainin ccA9oElQ.o
      CIE in ccA9oElQ.o
  \"std::ios_base::Init::~Init()\",referenced from:
      ___tcf_0 in ccA9oElQ.o
  \"std::basic_ostream<char,std::char_traits<char> >& std::endl<char,std::char_traits<char> >(std::basic_ostream<char,std::char_traits<char> >&)\",referenced from:
      _main in ccA9oElQ.o
  \"std::basic_ostream<char,std::char_traits<char> >::operator<<(std::basic_ostream<char,std::char_traits<char> >& (*)(std::basic_ostream<char,std::char_traits<char> >&))\",referenced from:
      _main in ccA9oElQ.o
  \"std::cout\",referenced from:
      _main in ccA9oElQ.o
ld: symbol(s) not found
collect2: ld returned 1 exit status
我不知道它是否相关:我的MBP上同时安装了xcode 3和xcode 4 这是版本信息:
$ gcc -v
Using built-in specs.
Target: i686-apple-darwin10
Configured with: /var/tmp/gcc/gcc-5666.3~6/src/configure --disable-checking --enable-werror --prefix=/usr --mandir=/share/man --enable-languages=c,objc,c++,obj-c++ --program-transform-name=/^[cg][^.-]*$/s/$/-4.2/ --with-slibdir=/usr/lib --build=i686-apple-darwin10 --program-prefix=i686-apple-darwin10- --host=x86_64-apple-darwin10 --target=i686-apple-darwin10 --with-gxx-include-dir=/include/c++/4.2.1
Thread model: posix
gcc version 4.2.1 (Apple Inc. build 5666) (dot 3)
系统信息
$ uname -a
Darwin mbp002.local 10.7.0 Darwin Kernel Version 10.7.0: Sat Jan 29 15:17:16 PST 2011; root:xnu-1504.9.37~1/RELEASE_I386 i386
    

解决方法

        因为要编译C ++程序,所以请使用
g++
而不是
gcc
g++ -Wall hello.cpp -o hello
或者,使用ѭ8,因为Apple已有一段时间没有更新GCC了,因此他们不太可能会更新它:
clang++ -Wall hello.cpp -o hello
    ,        使用g ++运行
g++ -Wall hello.cpp -o hello
如果使用gcc,则默认情况下不会链接C ++库。     

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。