0

我终其一生都无法弄清楚出了什么问题。

我的生成文件:

all: main.o rsa.o
    g++ -Wall -o main bin/main.o bin/rsa.o -lcrypto

main.o: src/main.cpp inc/rsa.h
    g++ -Wall -c src/main.cpp -o bin/main.o -I inc

rsa.o: src/rsa.cpp inc/rsa.h
    g++ -Wall -c src/rsa.cpp -o bin/rsa.o -I inc

我的主要课程:

#include <iostream>
#include <stdio.h>
#include "rsa.h"

using namespace std;
int main()
{
    //RSA rsa;
    return 0;
}

我的.cpp:

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

RSA::RSA(){}

我的.h:

#ifndef RSA_H
#define RSA_H

class RSA
{
    RSA();
};
#endif

我收到以下错误:

In file included from src/main.cpp:7:0:
inc/rsa.h:7:7: error: using typedef-name ‘RSA’ after ‘class’
/usr/include/openssl/ossl_typ.h:140:23: error: ‘RSA’ has a previous declaration here

我觉得我已经尝试了一切,但我被卡住了。有任何想法吗?

4

2 回答 2

4

/usr/include/openssl/ossl_typ.h:140:23: 错误: 'RSA' has a previous declaration here

从错误消息看来,您的符号名称与RSAOpenSSL 中定义的另一个名为的类发生冲突。
有两种方法可以解决这个问题:

  1. 更改您的班级名称或
  2. 如果您想保持相同的名称,请在命名空间中进行包装。
于 2012-10-03T04:09:36.417 回答
1

您的编译器在 ossl_typ.h 文件中找到了 RSA 的 typedef,它在您编译程序时间接#included。我至少能想到三个解决方案:

  1. 将您的班级名称更改为其他名称。

  2. 把你的班级放在一个namespace.

  3. 弄清楚为什么 OpenSSL 标头包含在您的构建中。环顾四周后,我发现了这个 Q&A,它说gcc -w -H <file>将向您显示#included 的文件。从那里您可能能够删除对 OpenSSL 标头的依赖。

于 2012-10-03T04:17:45.643 回答