gpt4 book ai didi

c - sndfile.h C CodeBlocks Windows 7

转载 作者:太空宇宙 更新时间:2023-11-04 03:55:24 25 4
gpt4 key购买 nike

我正在 Windows 7(64 位)上开发 CodeBlocks 12.11。我正在用 C 编程,我正在使用库:libsndfile (http://www.mega-nerd.com/libsndfile/api.html) 轻松读取 .wav 并将其转换为 double 组。

我运行了 libsndfile 的向导(适用于 windows 64 位),还在 Codeblocks 的编译器设置中,我添加了编译器和链接器的搜索目录。但是,当我编译程序时,唯一的错误是:

对 sf_open_fd 的 undefined reference

代码如下:

#include <stdio.h>
#include <stdlib.h>
#include <sndfile.h>

int main (int argc, char *argv[]) {

FILE* wavf;
SF_INFO info;
char* name = "example.wav";
wavf = fopen(name, "r");
SNDFILE* source = sf_open_fd(fileno(wavf), SFM_READ, &info, 1);
.
.
.
}

有什么想法吗?谢谢!

最佳答案

  1. 检查库和应用程序是否适用于相同的体系结构(比如 x64)。
  2. 检查图书馆是否链接到应用程序。
  3. 检查应用程序和库是否使用c编译器编译。

关于c - sndfile.h C CodeBlocks Windows 7,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16869778/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com