On 5/5/06, Michael Ryan Bannon <email@hidden> wrote:
Hello,
I've seen this topic on the list already, so I hope you don't mind me
asking
again.
I'm getting the following error during linking:
Command /usr/bin/g++-4.9 failed with exit code 1
That's the only error. It doesn't say why the link failed...just that.
I'm using Xcode 2.2 on a Mac Intel.
collect2: ld returned 1 exit status
/usr/bin/ld: multiple definitions of symbol raiseAmount(ActionType)
/usr/bin/ld: multiple definitions of symbol
__Z11raiseAmount10ActionType.eh
/usr/bin/ld: multiple definitions of symbol isRaise(ActionType)
/usr/bin/ld: multiple definitions of symbol
__Z7isRaise10ActionType.eh
Looks to me like these four errors are your problem: you've got four
functions defined in more than one place (or possibly two functions
defined with both C linkage and C++ linkage. I'm not certain on the
name mangling here).
--
Mark Wagner