• <small id='CJkW6'></small><noframes id='CJkW6'>

      <i id='CJkW6'><tr id='CJkW6'><dt id='CJkW6'><q id='CJkW6'><span id='CJkW6'><b id='CJkW6'><form id='CJkW6'><ins id='CJkW6'></ins><ul id='CJkW6'></ul><sub id='CJkW6'></sub></form><legend id='CJkW6'></legend><bdo id='CJkW6'><pre id='CJkW6'><center id='CJkW6'></center></pre></bdo></b><th id='CJkW6'></th></span></q></dt></tr></i><div id='CJkW6'><tfoot id='CJkW6'></tfoot><dl id='CJkW6'><fieldset id='CJkW6'></fieldset></dl></div>
    1. <legend id='CJkW6'><style id='CJkW6'><dir id='CJkW6'><q id='CJkW6'></q></dir></style></legend><tfoot id='CJkW6'></tfoot>

        • <bdo id='CJkW6'></bdo><ul id='CJkW6'></ul>

        如何在 netbeans (linux) 中链接库?

        How to link libs in netbeans (linux)?(如何在 netbeans (linux) 中链接库?)

        • <small id='BBfue'></small><noframes id='BBfue'>

            <i id='BBfue'><tr id='BBfue'><dt id='BBfue'><q id='BBfue'><span id='BBfue'><b id='BBfue'><form id='BBfue'><ins id='BBfue'></ins><ul id='BBfue'></ul><sub id='BBfue'></sub></form><legend id='BBfue'></legend><bdo id='BBfue'><pre id='BBfue'><center id='BBfue'></center></pre></bdo></b><th id='BBfue'></th></span></q></dt></tr></i><div id='BBfue'><tfoot id='BBfue'></tfoot><dl id='BBfue'><fieldset id='BBfue'></fieldset></dl></div>
              <tbody id='BBfue'></tbody>

              1. <tfoot id='BBfue'></tfoot>
                • <bdo id='BBfue'></bdo><ul id='BBfue'></ul>
                  <legend id='BBfue'><style id='BBfue'><dir id='BBfue'><q id='BBfue'></q></dir></style></legend>

                  本文介绍了如何在 netbeans (linux) 中链接库?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在尝试用 C++ 编写一个程序来分析声音.我想使用 libsndfile 库.我在 g++ 编译器选项中添加了一个选项 -lsndfile.但我收到错误:WavReader.cpp:18: 对 `sf_open' 的未定义引用

                  I'm trying to write a program in c++ to analyze sound. I want to use libsndfile library. I added an option -lsndfile to g++ compiler options. But I get the error: WavReader.cpp:18: undefined reference to `sf_open'

                  如何链接库?请帮忙!

                  #include <cstdlib>
                  #include "WavReader.h"
                  #include <sndfile.h>
                  #include <iostream>
                  
                  
                  namespace SA {
                  
                      WavReader::WavReader(char* fileName, SoundProcessor* soundProcessor) {
                          this->fileName = fileName;
                          this->soundProcessor = soundProcessor;
                      }
                  
                      void WavReader::readFile() {
                          SNDFILE* sf = NULL;
                          SF_INFO info;
                          info.format = 0; 
                          sf = sf_open(this->fileName, SFM_READ, &info);
                  
                      }
                  
                      WavReader::~WavReader() {
                      }
                  }
                  

                  推荐答案

                  project properties -> linker -> libraries -> add option -> another option: -lsndfile

                  project properties -> linker -> libraries -> add option -> another option: -lsndfile

                  这篇关于如何在 netbeans (linux) 中链接库?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  What is inside .lib file of Static library, Statically linked dynamic library and dynamically linked dynamic library?(静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么?)
                  How do I load a C DLL from the SXS in Python?(如何从 Python 中的 SXS 加载 C DLL?)
                  Can Cython code be compiled to a dll so C++ application can call it?(Cython 代码可以编译成 dll 以便 C++ 应用程序可以调用它吗?)
                  Delay Loading DLLs(延迟加载 DLL)
                  Throwing C++ exceptions across DLL boundaries(跨 DLL 边界抛出 C++ 异常)
                  Loading a dll from a dll?(从 dll 加载 dll?)
                      <tbody id='V5qWb'></tbody>

                    <legend id='V5qWb'><style id='V5qWb'><dir id='V5qWb'><q id='V5qWb'></q></dir></style></legend>

                      <small id='V5qWb'></small><noframes id='V5qWb'>

                      <tfoot id='V5qWb'></tfoot>
                      <i id='V5qWb'><tr id='V5qWb'><dt id='V5qWb'><q id='V5qWb'><span id='V5qWb'><b id='V5qWb'><form id='V5qWb'><ins id='V5qWb'></ins><ul id='V5qWb'></ul><sub id='V5qWb'></sub></form><legend id='V5qWb'></legend><bdo id='V5qWb'><pre id='V5qWb'><center id='V5qWb'></center></pre></bdo></b><th id='V5qWb'></th></span></q></dt></tr></i><div id='V5qWb'><tfoot id='V5qWb'></tfoot><dl id='V5qWb'><fieldset id='V5qWb'></fieldset></dl></div>

                        • <bdo id='V5qWb'></bdo><ul id='V5qWb'></ul>