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)
  • 相关阅读:
    架设WCF项目出现的问题
    百思不得其解的"Failed to allocate a managed memory buffer of 268435456 bytes."错误解决
    Ajax 分页
    关于Asp.net调用外部程序的拒绝访问错误
    转贴:[翻译]Visual Studio 2008 Code Metrics
    荀子,劝学篇(部分)
    .net设计模式(转载)
    人月神话读书笔记
    Memory food
    2010年4月12日,今天做计划
  • 原文地址:https://www.cnblogs.com/alanfang/p/6550107.html
Copyright © 2011-2022 走看看