构建过程中的Clion编译器错误

时间:2017-03-17 23:13:47

标签: c++ class g++ mingw clion

我试图创建一个简单的类program,但是我得到了一个奇怪的错误,从我看到它不是代码的问题,而是与Clion的问题。

CMakeFiles\Assignment_4.dir/objects.a(Box.cpp.obj):Box.cpp:(.bss+0x0): multiple definition of `Box::objectCount'
CMakeFiles\Assignment_4.dir/objects.a(Q_1.cpp.obj):Q_1.cpp:(.bss+0x0): first defined here
collect2.exe: error: ld returned 1 exit status
mingw32-make.exe[3]: *** [Assignment_4.exe] Error 1
CMakeFiles\Assignment_4.dir\build.make:147: recipe for target 'Assignment_4.exe' failed
CMakeFiles\Makefile2:66: recipe for target 'CMakeFiles/Assignment_4.dir/all' failed
mingw32-make.exe[2]: *** [CMakeFiles/Assignment_4.dir/all] Error 2
mingw32-make.exe[1]: *** [CMakeFiles/Assignment_4.dir/rule] Error 2
CMakeFiles\Makefile2:78: recipe for target 'CMakeFiles/Assignment_4.dir/rule' failed
mingw32-make.exe: *** [Assignment_4] Error 2
Makefile:117: recipe for target 'Assignment_4' failed

即使直接用g ++编译我也会出现多个对象定义错误。它之前在视觉工作室工作过。

C:\Users\fsa\CLionProjects\McMaster\Assignment_4>g++ Q_1.cpp clock.cpp box.cpp -o Q1.exe
C:\Users\fsa\AppData\Local\Temp\ccmD1R6t.o:box.cpp:(.bss+0x0): multiple definition of `Box::objectCount'
C:\Users\fsa\AppData\Local\Temp\cc0nh7LU.o:Q_1.cpp:(.bss+0x0): first defined here
collect2.exe: error: ld returned 1 exit status

1 个答案:

答案 0 :(得分:0)

问题是标题中有margin: 0 auto;。所以它出现在多个编译单元(Q1.o和Box.o)中。它应该移到Box.cpp。