English 中文(简体)
Libjingle的密码汇编
原标题:Error with crypto in Libjingle compile

在我汇编最新的平衡时,我发现一些问题如下:

scons: Building targets ...
________Compiling build/dbg/obj/third_party/srtp/crypto/kernel/err.o
third_party/srtp/crypto/kernel/err.c:56: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘err_level’
third_party/srtp/crypto/kernel/err.c:69: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
third_party/srtp/crypto/kernel/err.c:72: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘err_reporting_init’
third_party/srtp/crypto/kernel/err.c: In function ‘err_report’:
third_party/srtp/crypto/kernel/err.c:96: error: ‘va_list’ undeclared (first use in this function)
third_party/srtp/crypto/kernel/err.c:96: error: (Each undeclared identifier is reported only once
third_party/srtp/crypto/kernel/err.c:96: error: for each function it appears in.)
third_party/srtp/crypto/kernel/err.c:96: error: expected ‘;’ before ‘args’
third_party/srtp/crypto/kernel/err.c:98: error: ‘err_level’ undeclared (first use in this function)
cc1: warnings being treated as errors

Can anyone give me advice as to how to solve this error?

谢谢。

最佳回答

然而,汇编者提到的错误是,(本应以前曾发生)组合指挥本应确定目标(计算机)结构类型......x86、x86_64、军械等。

您应研究有关一揽子方案汇编备选办法

问题回答

暂无回答




相关问题
scons hierarchcal builds: propagating builders

I need to be able to tune a construction environment so that I can either build a static or a shared objects in lower levels. Currently, I came up with the following approach: top-level SConstruct: ...

Determining Build Directory from SConscript

I have an SConscript which is being copied to a build directory (variant_dir = ...) for construction. As a workaround for not being able to express dependencies, I m trying to copy some additional ...

Expressing an SConscript s Own Dependencies

I have an SCons project set up as follows: Project/ SConstruct # "SConscript( stuff/SConscript , variant_dir = build ) stuff/ SConscript # "import configuration" ...

How to set ":make" to use scons?

I know there is a way to make vim run scons instead of make when I press :make. I had an option that did this in my ~/.vimrc but I removed it a while ago and forgot what it was.

How to make scons work properly

I m trying to compile the SndObj library from the source. Supposedly it s as easy as just running scons from the top of the SndObj directory. I get this: nhnifong@ubuntu-nate:~/SndObj-2.6.6$ scons ...

热门标签