在Mac Netbeans 11上编译C ++时出现重复符号

时间:2019-05-13 13:05:13

标签: c++ linker ld clang++ netbeans-11

我正在尝试编译一些继承的代码,但是我不断收到错误消息,例如:

duplicate symbol _Wox in:
    build/Debug/GNU-MacOSX/BOFM.o
    build/Debug/GNU-MacOSX/IM.o

总共有260个错误。

对于每个错误,都有4个文件,2个实现文件和它们各自的头文件。标头仅包含变量和函数声明,而实现文件仅包含函数定义和#include

如果在多个实现文件中使用了变量,则“ master”(主)文件的标头具有普通声明,而所有其他标头在其声明中均使用extern

在以下示例中,变量Wox未在主标头中声明,但包含在具有声明的IM.hpp标头中。主和从实现文件都使用相同的Wox变量。

主标头(BOFM.hpp)

#ifndef BOFM_HPP
#define BOFM_HPP

double g = 9.80665;
double R = (8.205 * pow(10.0, (-5.0)));
double dLime = 3340.0;
double dDolomite = 3250.0;

... [no Wox declaration]

void initFirstMin();
void calcBOF();
int main(int argc, char *argv[]);

#endif

主要实施(BOFM.cpp)

#define _USE_MATH_DEFINES
#include <math.h>

#include "BOFM.hpp"
#include "IM.hpp"
...
void initFirstMin(){
   ...
   Bs.push_back(Wox.at(x - 1).at(2) / Wox.at(x - 1).at(1));
   ...
}

int main(int argc, char *argv[]){
   ...
   initFirstMin();
   ...
}

从站标头(IM.hpp)

#ifndef IM_HPP
#define IM_HPP

double MHm;
std::vector<double> WiHm (static_cast<int> (4), 0);
double Sulphur;
...
std::vector< std::vector<double> > Wox;
...
void initST();
void initFT();

#endif

从属实施(IM.cpp)

#include <vector>
#include "IM.hpp"

...
void initST()
{
    Wox.push_back({ 33.5, 17.5, 27, 5, 13.5 });
    Wox.push_back({ 31.5, 19, 27, 3.5, 14.5 });
    Wox.push_back({ 29, 20.5, 28, 3, 14.6 });
    Wox.push_back({ 28, 20.5, 32, 3, 14 });
}
...

编译器根据C ++ 11运行。我可以提供任何缺少的必填详细信息。

0 个答案:

没有答案