- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试安装本书附带的代码:https://sites.google.com/site/cinterfacesimplementations/
按照作者在此处给出的说明进行操作:http://cii.googlecode.com/svn/trunk/install.html
我的电脑在 32 位 i686 架构上安装了 ubuntu 11.04。按照作者对我尝试的 32 位 linux 的说明进行操作:
make CC='cc -DMAXALIGN=4' AS='cc -c -x assembler-with-cpp -traditional'
其中cc是gcc版本4.5.2其中给出了以下警告和错误:
makefile:138: warning: overriding commands for target `maxalign'
makefile:135: warning: ignoring old cc -DMAXALIGN=4 -g -Iinclude -c -o ap.o src/ap.c
In file included from src/thread.c:100:0:
/usr/include/i386-linux-gnu/asm/sigcontext.h:56:8: error: redefinition of ‘struct _fpreg’
/usr/include/bits/sigcontext.h:28:8: note: originally defined here
/usr/include/i386-linux-gnu/asm/sigcontext.h:61:8: error: redefinition of ‘struct _fpxreg’
/usr/include/bits/sigcontext.h:34:8: note: originally defined here
/usr/include/i386-linux-gnu/asm/sigcontext.h:67:8: error: redefinition of ‘struct _xmmreg’
/usr/include/bits/sigcontext.h:41:8: note: originally defined here
/usr/include/i386-linux-gnu/asm/sigcontext.h:71:8: error: redefinition of ‘struct _fpstate’
/usr/include/bits/sigcontext.h:50:8: note: originally defined here
/usr/include/i386-linux-gnu/asm/sigcontext.h:104:8: error: redefinition of ‘struct sigcontext’
/usr/include/bits/sigcontext.h:81:8: note: originally defined here
src/thread.c: In function ‘interrupt’:
src/thread.c:108:2: warning: ‘sigsetmask’ is deprecated (declared at /usr/include/signal.h:199)
make: *** [thread.o] Error 1
不确定在这里做什么。同样令人费解的是/usr/include/i386-linux-gnu。因为如果我这样做
uname -m
它打印 i686 而不是 i363。有什么想法吗?
干杯,吉姆
最佳答案
在 thread.c 的第 100 行——删除 #include <asm/sigcontext.h>
(或将其注释掉)。那应该删除“重复声明”。它不会修复不推荐使用的接口(interface)的使用(十年前写的书和 5 年前更新的代码的问题),如果您尝试在 64 位处理器上运行它,则会出现其他我没有尝试修复的问题.
关于c - 'c interfaces and implementations' (David Hanson) 代码安装,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14533191/
我正在尝试实现 David Bueza's Pie chart labels在我自己的饼图中。我尝试根据我的需要调整使用的代码,到目前为止取得了成功。然而有趣的事情发生了。一件事是我的线条从饼图的外部
问题是,以下警报会发生什么: function bar() { return foo; foo = 10; function foo() {} var foo = '1
如果有人完成或正在关注 David Turnbull 的“创建您的第一个 Meteor 应用程序”,这是一个问题。 第 102 页上显示“在“添加玩家”表单中添加“分数”字段,允许用户在将玩家提交到列
我正在寻求有关如何使用 David Bradshaw 的 iframe resizer 的帮助?我打算在博客上使用它,因为我使用 iframe 来显示跨域内容,我希望 iframe 根据其内容的大小调
Quiz 需要一些帮助: 问题 5: function bar() { return foo; foo = 10; function foo() {} var foo
jsfiddle of the problem with the space of the flip 这是来自 david walsh's blog 的代码 两个元素之间有一个空格,尽管似乎没有指定边
我观看了screencast来自 David Beazly,他使用多重或更具体的菱形继承(钻石问题)来实现类型检查。我认为他的方法看起来真的很酷,但这也让我感到困惑,我根本不明白它是如何工作的。这是我
http://desandro.com/如果您滚动到页面底部,它会显示:大卫迪桑德罗做了这个。 在悬停时它有一个很棒的效果谁知道如何使用 http://designobvio.us/DoUs/dire
我正在尝试安装本书附带的代码:https://sites.google.com/site/cinterfacesimplementations/ 按照作者在此处给出的说明进行操作:http://cii
我意识到这是一个高度特化的问题.. 但在这里。我正在使用 SIFT 的实现来查找两个图像上的匹配项。使用我当前的实现,当我将图像与 90 度或 180 度版本匹配时,我得到的匹配一致地偏离了大约半个像
过去几天我一直在使用 RDAVIDWebService,今天早上突然出现以下错误。我在 Windows 7 计算机上使用 R 3.1.1,尽管我可以切换到另一台计算机并得到相同的错误。谁能告诉我这个错
我在一本书中读过这句话: There is no problem in computer science that can't be solved using another level of ind
我有一个 Teamspeak 状态查看脚本托管在与我的 wordpress 不同的域上。因此,我尝试使用 iframe 在 text/html 小部件中显示脚本结果,但它不会自动调整高度。 Wordp
我正在使用 David Piegza 的开源代码,通过 Three.js 可视化 3D 力导向图。源代码可以在这里找到:https://github.com/davidpiegza/Graph-Vis
我尝试使用 David Lowe's implementation 对几个不同的对象进行对象检测和 OpenCV implementation (只是在此代码中更改了 'SurfFeatureDete
我正在使用来自 http://www.netlib.org/fp/dtoa.c 的 David M. Gay 的 dtoa() 函数在 Rebol3 解释器中实现 MOLD 功能。它运行良好,在 Li
天真的问题,但这是我在 JSF 中的第一步,所以请原谅我 ;-) 我正在遵循 David Geary、Cay S. Horstmann 的“Core JavaServerFaces”(第 3 版)中第
我是一名优秀的程序员,十分优秀!