gpt4 book ai didi

c++ - 如何使用 Cygwin 在 C++ 中添加外部库

转载 作者:搜寻专家 更新时间:2023-10-31 01:12:47 25 4
gpt4 key购买 nike

我已经浪费了时间试图解决这个问题,但到目前为止运气不佳...我尝试通过 StackOverflow 查找相同的问题,但主要与人们使用的 IDE 有关,例如 VS 或 Eclipse。

我正在为他们的 C++ 类(class)做斯坦福读者的一些例子,但代码不能正常工作。我试图弄清楚如何使用外部库,但总是出错。我可能没有使用正确的命令,但我不知道该使用哪个命令。

我正在使用 Cygwin,它是进行 C++ 练习的终端。我将所有文件都放在同一个文件夹中。我使用的是 Windows 7,但这应该不是最大的问题。

作为一个例子,这个错误很好地展示了我在编写 g++ Craps.cpp 时得到的结果:

$ g++ Craps.cpp

/tmp/ccdTdi0t.o:Craps.cpp:(.text+0x1cf): undefined reference to `randomInteger(int, int)'

/tmp/ccdTdi0t.o:Craps.cpp:(.text+0x1e6): undefined reference to `randomInteger(int, int)'

/usr/lib/gcc/i686-pc-cygwin/4.5.3/../../../../i686-pc-cygwin/bin/ld: /tmp/ccdTdi0t.o: bad

reloc address 0x0 in section `.ctors'

collect2: ld returned 1 exit status

我这次运行的示例只是带有外部库的示例之一,如果我错了另一个,就会给我同样的错误。它找不到库。

这是我的主要也叫 Craps.cpp:

#include <iostream>
#include "random.h"
using namespace std;

bool tryToMakePoint(int point);
int rollTwoDice();
int main() {
cout << "This program plays a game of craps." << endl;
int point = rollTwoDice();
switch (point) {
case 7: case 11:
cout << "That's a natural. You win." << endl;
break;
case 2: case 3: case 12:
cout << "That's craps. You lose" << endl;
break;
default:
cout << "Your point is " << point << "." << endl;
if (tryToMakePoint(point)) {
cout << "You made your point. You win." << endl;
} else {
cout << "You rolled a seven. You lose." << endl;
}
}
return 0;
}


bool tryToMakePoint(int point) {
while (true) {
int total = rollTwoDice();
if (total == point) return true;
if (total == 7) return false;
}
}


int rollTwoDice() {
cout << "Rolling the dice . . . " << endl;
int d1 = randomInteger(1, 6);
int d2 = randomInteger(1, 6);
int total = d1 + d2;
cout << "You rolled " << d1 << " and " << d2
<< " - that's " << total << endl;
return total;
}

我的随机.cpp:

#include <cstdlib>
#include <cmath>
#include <ctime>
#include "random.h"
using namespace std;

void initRandomSeed();

int randomInteger(int low, int high) {
initRandomSeed();
double d = rand() / (double(RAND_MAX) + 1);
double s = d * (double(high) - low + 1);
return int(floor(low + s ));
}

double randomReal(double low, double high) {
initRandomSeed();
double d = rand() / (double(RAND_MAX) + 1);
double s = d * (high - low);
return low + s;
}

bool randomChance(double p) {
initRandomSeed();
return randomReal(0, 1) < p;

}

void setRandomSeed(int seed) {
initRandomSeed();
srand(seed);
}

void initRandomSeed() {
static bool initialized = false;
if (!initialized) {
srand(int(time(NULL)));
initialized = true;
}
}

最后是我的 random.h:

#ifndef _random_h
#define _random_h

int randomInteger(int low, int high);

double randomReal(double low, double high);

bool randomChance(double p);

void setRandomSeed(int seed);

#endif

我希望有人能帮助我。如果是 Cygwin 命令出错,如果我能看到我应该写什么就太好了。

编辑:才发现我连书上的例子都写不对。现在已修复,应该没有错误......我非常希望如此。对此感到抱歉。

最佳答案

很快,您应该将 random.cpp(或者,如果您已经编译了它,一个目标文件或编译代码所在的库)添加到您的命令行中:

g++ Craps.cpp random.cpp

您遇到的问题是命令行说 Craps.cpp 中的代码应该被编译然后链接到一个可执行文件中。虽然有外部函数的前向声明来编译文件就足够了,但您应该将这些函数的代码提供给链接器,以便它能够创建可执行文件。

至于库,你通常指定你需要使用 GCC 的 -l 选项。您可能需要指定(使用 -L)从中获取库的路径,即使它们都在当前目录中。例如。假设您在当前目录中有一个名为 librandom.alibrandom.so 的库:

g++ Craps.cpp -L. -l random

对于外部库,可能需要指定其他目录,以便链接器知道在哪里可以找到它需要的库。

关于c++ - 如何使用 Cygwin 在 C++ 中添加外部库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13386323/

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