zoukankan      html  css  js  c++  java
  • caffe之mac环境下通过XCode调试C++程序

    caffe log输出参考:http://blog.csdn.net/langb2014/article/details/50482150
    mac下用xcode开发caffe:http://coldmooon.github.io/2015/08/14/compile_caffe_cpp/

    Xcode编译Undefined symbols for architecture xxx 错误总结:https://my.oschina.net/ioslighter/blog/363211
    Xcode, 给项目添加framework:http://www.cnblogs.com/SeeMeFly/archive/2011/09/09/2172688.html

    1.飞哥给的一些参考:http://blog.csdn.net/roland_sun/article/details/50452646
    2. 飞哥给的一些参考:http://blog.csdn.net/koupoo/article/details/6872678

    还没成功 

    问题:

          LOG(ERROR) 可以正常打印信息。

          LOG(INFO) 不起作用。

     解决办法:

    添加此句: FLAGS_alsologtostderr =1 

    然后先看一下是怎么加输出到日志,

    #高性能矩阵计算,数值运算库  
    brew install openblas  
    #不加可能不会在/usr/local/include(bin) 中创建openblas的link,导致查找不到cblas.h的错误  
    brew link openblas --force 

    一、C++ Standard Library 

    二、Build Settings/ Other Linker Flags添加:-lboost_system

    Undefined symbols for architecture x86_64:
      "boost::system::system_category()", referenced from:
          ___cxx_global_var_init.2 in main.o
      "boost::system::generic_category()", referenced from:
          ___cxx_global_var_init in main.o
          ___cxx_global_var_init.1 in main.o
    ld: symbol(s) not found for architecture x86_64
    clang: error: linker command failed with exit code 1 (use -v to see invocation)

     三、未解决

    Undefined symbols for architecture x86_64:
      "caffe::Net<float>::Net(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, caffe::Phase, int, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > const*, caffe::Net<float> const*)", referenced from:
          Classifier::Classifier(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) in main.o
    ld: symbol(s) not found for architecture x86_64
    clang: error: linker command failed with exit code 1 (use -v to see invocation)
  • 相关阅读:
    02-NSArray、NSSet、NSDictionary 集合类
    01-结构体NSRange、NSPoint、NSSize、NSRect、及NSString简介
    13-Objective-C特有语法:协议protocol
    12-Objective-C特有语法:(高效率)block数据类型
    Xcode编译器特性:ARC(Automatic Reference Counting)
    11-Objective-C特有语法:内存管理总结
    10-Objective-C特有语法:Category、类对象、description、SEL、NSLog输出增强
    09-Objective-C特有语法:万能指针id及构造方法
    通配符 正则常用对比
    window 远程登录linux
  • 原文地址:https://www.cnblogs.com/alanfang/p/6550107.html
Copyright © 2011-2022 走看看