SoX 编译出错

简介:
[root@apache sox-14.3.1]# make -s
Making all in lpc10
Making all in libgsm
Making all in src
sox.c: In function ?.arse_effects?.
sox.c:808: warning: passing argument 1 of ?.alloc?.with different width due to prototype
sox.c:808: warning: passing argument 2 of ?.alloc?.with different width due to prototype
sox.c:811: warning: passing argument 1 of ?.alloc?.with different width due to prototype
sox.c:811: warning: passing argument 2 of ?.alloc?.with different width due to prototype
sox.c: In function ?.pen_output_file?.
sox.c:1453: warning: passing argument 1 of ?.alloc?.with different width due to prototype
sox.c:1453: warning: passing argument 2 of ?.alloc?.with different width due to prototype
sox.c:1708:1: warning: embedding a directive within macro arguments is not portable
sox.c:1710:1: warning: embedding a directive within macro arguments is not portable
sox.c:1712:1: warning: embedding a directive within macro arguments is not portable
sox.c: In function ?.arse_gopts_and_fopts?.
sox.c:2201: warning: passing argument 1 of ?.alloc?.with different width due to prototype
sox.c:2201: warning: passing argument 2 of ?.alloc?.with different width due to prototype
sox.c:2202: warning: passing argument 1 of ?.alloc?.with different width due to prototype
sox.c:2202: warning: passing argument 2 of ?.alloc?.with different width due to prototype
sox.c:2211: warning: passing argument 1 of ?.alloc?.with different width due to prototype
sox.c:2211: warning: passing argument 2 of ?.alloc?.with different width due to prototype
stats.c: In function ?.it_depth?.
stats.c:135: warning: negative integer implicitly converted to unsigned type
hcom.c: In function ?.topwrite?.
hcom.c:436: warning: dereferencing type-punned pointer will break strict-aliasing rules
mp3.c:60: error: expected ?.?. ?.?. ?.?. ?.sm?.or ?._attribute__?.before ?.onst?
mp3.c:60: warning: ISO C does not allow extra ?.?.outside of a function
In file included from mp3.c:248:
mp3-util.h: In function ?.rite_comments?.
mp3-util.h:41: warning: passing argument 2 of ?.->id3tag_set_pad?.with different width due to prototype
mp3.c: In function ?.et_id3v2_tag_size?.
mp3.c:604: warning: passing argument 2 of ?.read?.with different width due to prototype
mp3.c:611: warning: passing argument 3 of ?.trncmp?.with different width due to prototype
mp3.c: In function ?.ewrite_id3v2_tag?.
mp3.c:650: warning: format ?.d?.expects type ?.nt?. but argument 2 has type ?.ize_t?
mp3.c:672: warning: passing argument 3 of ?.write?.with different width due to prototype
mp3.c:673: warning: format ?.d?.expects type ?.nt?. but argument 2 has type ?.ize_t?
mp3.c: In function ?.ewrite_tags?.
mp3.c:725: warning: passing argument 2 of ?.write?.with different width due to prototype
mp3.c:725: warning: passing argument 3 of ?.write?.with different width due to prototype
make[1]: *** [libsox_la-mp3.lo] Error 1
make: *** [all-recursive] Error 1









本文转自 jxwpx 51CTO博客,原文链接:http://blog.51cto.com/jxwpx/457067,如需转载请自行联系原作者
目录
相关文章
|
11月前
|
C语言
【C语言】详解静态变量static
【C语言】详解静态变量static
86 0
|
12月前
|
C++
C2440编译错误:__cplusplus编译选项引发的
C2440编译错误:__cplusplus编译选项引发的
179 0
C2440编译错误:__cplusplus编译选项引发的
|
编译器 程序员 C语言
C 语言标准及编译器介绍
今天给大家介绍一下C语言标准及其由来
250 0
|
编译器 C++
完美解决vs编译器scanf报错问题
完美解决vs编译器scanf报错问题
219 0
完美解决vs编译器scanf报错问题
反编译报错 using 语句中使用的类型必须可隐式转换为“System.IDisposable“
反编译报错 using 语句中使用的类型必须可隐式转换为“System.IDisposable“
|
自然语言处理 编译器
【译】一个超级小的编译器
【译】一个超级小的编译器
66 0
编译出错 recompile with -fPIC
编译出错 recompile with -fPIC
101 0
|
编译器
构造函数为什么一般不定义为虚函数?而析构函数一般写成虚函数的原因 ?
构造函数为什么一般不定义为虚函数?而析构函数一般写成虚函数的原因 ?
341 0
|
C++ 编译器
C++ 编译器
C++编译器 当我们定义了一个类的时候, C++编译器在默认的情况下会为我们添加默认的构造方法, 拷贝构造方法, 析构函数和=运算符 在第一次创建对象的语句中如: MyString myString = "hello, world!";中, 如果我们定义的构造函数为如下, 则就是隐式调用构造方法,...
1682 0
|
C语言 C++ 编译器
不同编译器对预编译头文件的处理
最近为了给xmake实现预编译头文件的支持,研究了下各大主流编译器处理预编译头的机制以及之间的一些差异。 现在的大部分c/c++编译器都是支持预编译头的,例如:gcc,clang,msvc等,用于优化c++代码的编译速度,毕竟c++的头文件如果包含了模板定义的话,编译速度是很慢的, 如果能够吧大部分通用的头文件放置在一个header.h中,在其他源码编译之前预先对其进行编译,之后的代码都能重用这部分预编译头,就可以极大程度上减少频繁的头文件冗余编译。
1498 0

热门文章

最新文章