- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我在 OS X 上,当我尝试在终端中执行此命令时出现编译错误
g++ -Wall -o test_E test_E.cpp dynamic_array.cpp oracle.o
我的其他 c++ 文件,例如 test_A.cpp
和 test_B.cpp
在同一命令上运行良好,但没有最后一部分,例如
g++ -Wall -o test_A test_A.cpp dynamic_array.cpp
我也试过在没有 oracle.o
的情况下运行命令,它给出了同样的错误,但没有不支持的文件格式
我该如何解决这个问题?
ld: warning: ignoring file oracle.o, file was built for unsupported file
format ( 0x7F 0x45 0x4C 0x46 0x02 0x01 0x01 0x00 0x00 0x00 0x00 0x00 0x00 0x00
0x00 0x00 ) which is not the architecture being linked (x86_64): oracle.o
Undefined symbols for architecture x86_64:
"oracle::insert(int, int)", referenced from:
generate_oracle(oracle&, int, int, int) in test_E-2b7bb8.o
run_tests(dynamic_array&, oracle&) in test_E-2b7bb8.o
"oracle::operator[](unsigned int)", referenced from:
print_state(dynamic_array&, oracle&) in test_E-2b7bb8.o
compare_content(dynamic_array&, oracle&) in test_E-2b7bb8.o
"oracle::get_allocated_size() const", referenced from:
print_state(dynamic_array&, oracle&) in test_E-2b7bb8.o
compare_content(dynamic_array&, oracle&) in test_E-2b7bb8.o
"oracle::get_size() const", referenced from:
print_state(dynamic_array&, oracle&) in test_E-2b7bb8.o
compare_exceptions(dynamic_array&, oracle&) in test_E-2b7bb8.o
compare_content(dynamic_array&, oracle&) in test_E-2b7bb8.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
这是test_E.cpp
#include <iostream>
#include "dynamic_array.h"
#include "oracle.h"
using namespace std;
void generate_cut(dynamic_array &cut, int start, int delta, int count) {
for (int i = 0; i < count; i++) {
cut.insert(start, i);
start += delta;
}
}
void generate_oracle(oracle &orc, int start, int delta, int count) {
for (int i = 0; i < count; i++) {
orc.insert(start, i);
start += delta;
}
}
void print_state(dynamic_array &cut, oracle &orc) {
cout << "***** cut" << endl;
cout << "size: " << cut.get_size() << endl;
cout << "allocated size: " << cut.get_allocated_size() << endl;
for (int i = 0; i < cut.get_size(); i++) {
cout << cut[i] << " ";
if (i > 50) { // avoid lengthy output
cout << " ...";
break;
}
}
cout << endl;
cout << "***** oracle" << endl;
cout << "size: " << orc.get_size() << endl;
cout << "allocated size: " << orc.get_allocated_size() << endl;
for (int i = 0; i < orc.get_size(); i++) {
cout << orc[i] << " ";
if (i > 50) { // avoid lengthy output
cout << " ...";
break;
}
}
cout << endl;
}
int const_f(const dynamic_array &cut, int i) {
return cut[i];
}
int compare_exceptions(dynamic_array &cut, oracle &orc) {
{
// ********** operator[]
int indexes[] = {orc.get_size(), orc.get_size()+1000};
int N = sizeof(indexes)/sizeof(int);
for (int i = 0; i < N; i++) {
int caught = 0;
try {
cut[indexes[i]];
} catch (dynamic_array::exception) {
caught = 1;
}
if (!caught) {
cout << "operator[]: uncaught index range exception at: ";
cout << indexes[i] << endl;
return 0;
}
}
}
{
// ********** operator[] const
int indexes[] = {orc.get_size(), orc.get_size()+1000};
int N = sizeof(indexes)/sizeof(int);
for (int i = 0; i < N; i++) {
int caught = 0;
try {
cut[indexes[i]];
} catch (dynamic_array::exception) {
caught = 1;
}
if (!caught) {
cout << "operator[] const: uncaught index range exception at: ";
cout << indexes[i] << endl;
return 0;
}
}
}
{
// ********** insert(int,int)
int indexes[] = {-1000, -1, orc.get_size()+1, orc.get_size()+1000};
int N = sizeof(indexes)/sizeof(int);
for (int i = 0; i < N; i++) {
int caught = 0;
try {
cut.insert(0, indexes[i]);
} catch (dynamic_array::exception) {
caught = 1;
}
if (!caught) {
cout << "insert(int,int): uncaught index range exception at: ";
cout << indexes[i] << endl;
return 0;
}
}
}
{
// ********** insert(dynamic_array&,int)
int indexes[] = {-1000, -1, orc.get_size()+1, orc.get_size()+1000};
int N = sizeof(indexes)/sizeof(int);
dynamic_array a;
for (int i = 0; i < N; i++) {
int caught = 0;
try {
cut.insert(a, indexes[i]);
} catch (dynamic_array::exception) {
caught = 1;
}
if (!caught) {
cout << "insert(dynamic_array&,int): uncaught index range exception at: ";
cout << indexes[i] << endl;
return 0;
}
}
}
{
// ********** remove(int)
int indexes[] = {-1000, -1, orc.get_size(), orc.get_size()+1000};
int N = sizeof(indexes)/sizeof(int);
for (int i = 0; i < N; i++) {
int caught = 0;
try {
cut.remove(indexes[i]);
} catch (dynamic_array::exception) {
caught = 1;
}
if (!caught) {
cout << "remove(int): uncaught index range exception at: ";
cout << indexes[i] << endl;
return 0;
}
}
}
{
// ********** remove(int,int)
// start out of range
int start_indexes[] = {-1000, -1, orc.get_size()+1, orc.get_size()+1000};
int N = sizeof(start_indexes)/sizeof(int);
for (int i = 0; i < N; i++) {
int caught = 0;
try {
cut.remove(start_indexes[i], orc.get_size());
} catch (dynamic_array::exception) {
caught = 1;
}
if (!caught) {
cout << "remove(int,int): uncaught index range exception at: ";
cout << start_indexes[i] << "," << orc.get_size() << endl;
return 0;
}
}
// end out of range
int end_indexes[] = {orc.get_size()+1, orc.get_size()+1000};
N = sizeof(end_indexes)/sizeof(int);
for (int i = 0; i < N; i++) {
int caught = 0;
try {
cut.remove(0, end_indexes[i]);
} catch (dynamic_array::exception) {
caught = 1;
}
if (!caught) {
cout << "remove(int,int): uncaught index range exception at: ";
cout << end_indexes[i] << "," << orc.get_size() << endl;
return 0;
}
}
// special case: 0 <= end < start < size
int caught = 0;
try {
cut.remove(1, 0);
} catch (dynamic_array::exception) {
caught = 1;
}
if (!caught) {
cout << "remove(int,int): uncaught index range exception at: 1,0" << endl;
return 0;
}
}
return 1; // no failures detected
}
int compare_content(dynamic_array &cut, oracle &orc) {
// check size
if (cut.get_size() != orc.get_size()) {
cout << "ERROR. ";
cout << "size. cut: " << cut.get_size();
cout << " orc:" << orc.get_size() << endl;
print_state(cut, orc);
return 0;
}
// check get_allocated_size
if (cut.get_allocated_size() != orc.get_allocated_size()) {
cout << "ERROR. ";
cout << "allocated_size. cut:" << cut.get_allocated_size();
cout << " orc:" << orc.get_allocated_size() << endl;
print_state(cut, orc);
return 0;
}
// check operator[] and operator[] const
for (int i = 0; i < orc.get_size(); i++) {
if (cut[i] != orc[i]) {
cout << "ERROR. ";
cout << "cut[" << i << "]:" << cut[i];
cout << " orc[" << i << "]:" << orc[i] << endl;
print_state(cut, orc);
return 0;
}
int x = const_f(cut, i);
if (x != orc[i]) {
cout << "ERROR. ";
cout << "cut[" << i << "]:" << cut[i];
cout << " orc[" << i << "]:" << x << endl;
print_state(cut, orc);
return 0;
}
}
return 1;
}
void run_tests(dynamic_array &cut, oracle &orc) {
compare_content(cut, orc);
compare_exceptions(cut, orc);
cut.insert(1, 0);
orc.insert(1, 0);
compare_content(cut, orc);
compare_exceptions(cut, orc);
}
int main() {
dynamic_array cut;
generate_cut(cut, 0, 2, 5);
oracle orc;
generate_oracle(orc, 0, 2, 5);
run_tests(cut, orc);
}
最佳答案
在这种情况下,您的问题是您正在尝试链接 Linux ELF 二进制文件,它输出的 header 的十六进制转储证明了这一点 (0x45 0x4C 0x46
= ELF
).
基于您可用资源的可能解决方案:
关于c++ - 文件是为不受支持的文件格式构建的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35518941/
我的 processmaker 安装遇到了一些问题。我正在尝试使用本指南 [url]http://wiki.processmaker.com/index.php/ProcessMaker_Ubuntu
我正在使用 ShareKit。发送 SMS 消息使用 MFMessageComposeViewController,用户看到标题“文本”。我想将该标题更改为更能反射(reflect)实际可用内容的内容
我需要在我的一个针对 Gingerbread 的 Android 应用程序中使用操作栏和 fragment 的组合。所以我使用了 v7 支持库中的操作栏和 v4 支持库中的 fragment ,并使用
我明白为什么浏览器 vendor 不想帮助我阻止他们的 UI 线程。但是,我不明白为什么会有: Web Workers 中没有 sleep (2) 没有同步 WebSockets API 有一个syn
最近我的组织正在考虑使用 Docker。我们组使用的是cloudera CDH 5.1.2。 1) cloudera 是否与 Docker 容器兼容?2) docker 和cloudera 组合是否存
我正在尝试通过编译在 Mac 上安装 rsync 3.2.3。但是,我想安装所有功能。为此,它需要一些库,此处 ( https://download.samba.org/pub/rsync/INSTA
我一直在使用 PyDev 成功运行 nose 测试,并想试试 nose2。 所以我安装了它 pip install nose2 复制/粘贴来自 http://nose2.info/ 的示例代码进入名为
我想知道 LLVM 中是否有任何函数/方法可以在 LLVM IR 中添加 Open-MP 构造。 llvm-3.0 是否仍然支持 OpenMP 指令? 最佳答案 OpenMP 是一种高级语言扩展。因此
我对 CUDA 编程非常陌生。我正在浏览 SDK 附带的示例。我能够编译代码,但是当我运行它时,出现以下错误: "clock.cu(177) : CUDA Runtime API error 38:
RStudio 是用于 R 开发的出色 IDE。我想知道是否有任何方法可以很好地支持 HiDPI 分辨率? 我目前有 13 英寸显示器和 3200x1800 分辨率,甚至很难阅读 RStudio 选项
我正在寻找一种有助于为 Django 项目提供 RDF 支持的工具。 到目前为止,我发现了两个: django-rdf - 最后一次修改是在 4 年前,所以它看起来像是一个死项目。 djubby -
我刚刚尝试了一些 JS 核心原则,发现引擎评估链接的关系运算符而不会引发错误。相反,他们以我自己无法理解的方式进行评估。 console.log(1 4 > 3 > 2 > 1); //false,
我知道 etexteditor 和 vim/emacs。 是否有任何其他 Windows 编辑器支持类似 textmate 的片段(例如,您编写触发词,按 Tab,它更改为某些内容,再次按 Tab,它
我正在尝试找出验证给定集群的网络策略配置的最佳方法。 According to the documentation Network policies are implemented by the ne
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
Z3 会支持 AUFBV 吗? 对于以下脚本: (set-logic AUFBV) (declare-fun x () (_ BitVec 16)) (declare-const t (Array (
使用分部类编写 NUnit 测试的优缺点是什么? 我要开始了: 亲:可以测试私有(private)方法 缺点:TDD 不再可能了 还有什么? 最佳答案 缺点:要么您必须测试与您发布的版本不同的构建,要
它很容易(对于 90% 的 aop 特性)在没有任何语言本身支持的情况下做到这一点,就像大多数动态语言如 python 和 ruby 一样。然而,Dojo在 1.3.2 上直接支持它.最新版本发生
我在我的 android 应用程序中使用亚洲字符,我已经了解到某些字符无法显示,因为系统字体不支持它们。我查询了一个包含亚洲字符的数据库,并且经常检索到无法显示的标志。这些情况对我的应用程序来说通常不
你好,我想实现一个控件,我想在用户键入@字符时启用该控件,直到未填充运行文本中的空格为止,它应该显示用户列表,@符号后键入的文本应该显示基于键盘字符的建议,就像我们在上面看到的那样Twitter 或
我是一名优秀的程序员,十分优秀!