• <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) 中链接库?

        时间:2023-08-27

        • <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) 中链接库?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:C++ 使用 boost fusion adapt_struct 迭代到嵌套结构域 下一篇:cmake 和 netbeans 可以玩吗?

                  相关文章

                    <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>