【发布时间】:2017-03-18 07:28:28
【问题描述】:
我试图创建一个简单的类 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
【问题讨论】:
-
我使用错误的命令进行编译。应该是
g++ Q_1.cpp clock.cpp box.cpp -o Q1.exe -
那么,现在编译成功了吗?
-
@GigaRohan 不,但它确实改变了错误输出。在我的类文件根本没有编译之前。现在我有
multiple definition ofBox::objectCount'` 错误。我通过代码查看原因。