Do I have to worry about these warnings? Class PBApplicationDelegate is implemented in both...

Mac OSX specific forum
User avatar
Kukulkan
Addict
Addict
Posts: 1396
Joined: Mon Jun 06, 2005 2:35 pm
Location: germany
Contact:

Do I have to worry about these warnings? Class PBApplicationDelegate is implemented in both...

Post by Kukulkan »

Hi,

I compile both a .dylib and an executable on MacOS (PB 5.73 x64). The executable is using the .dylib.

Now I get these warnings:

Code: Select all

objc[58149]: Class PBApplicationDelegate is implemented in both /Users/buildmaster/build/mac/branches/sdks/client/company_cmd (0x100076190) and /Users/buildmaster/build/mac/branches/sdks/client/libcompany_2.dylib (0x104ee84e8). One of the two will be used. Which one is undefined.
objc[58149]: Class PBApplication is implemented in both /Users/buildmaster/build/mac/branches/sdks/client/company_cmd (0x1000761b8) and /Users/buildmaster/build/mac/branches/sdks/client/libcompany_2.dylib (0x104ee8510). One of the two will be used. Which one is undefined.
objc[58149]: Class PBMenuDelegate is implemented in both /Users/buildmaster/build/mac/branches/sdks/client/company_cmd (0x100076230) and /Users/buildmaster/build/mac/branches/sdks/client/libcompany_2.dylib (0x104ee8588). One of the two will be used. Which one is undefined.
objc[58149]: Class PBMenuObject is implemented in both /Users/buildmaster/build/mac/branches/sdks/client/company_cmd (0x100076280) and /Users/buildmaster/build/mac/branches/sdks/client/libcompany_2.dylib (0x104ee85d8). One of the two will be used. Which one is undefined.
objc[58149]: Class PBGadgetList is implemented in both /Users/buildmaster/build/mac/branches/sdks/client/company_cmd (0x1000762a8) and /Users/buildmaster/build/mac/branches/sdks/client/libcompany_2.dylib (0x104ee8600). One of the two will be used. Which one is undefined.
objc[58149]: Class PB_NSFlippedView is implemented in both /Users/buildmaster/build/mac/branches/sdks/client/company_cmd (0x100076320) and /Users/buildmaster/build/mac/branches/sdks/client/libcompany_2.dylib (0x104ee8678). One of the two will be used. Which one is undefined.
objc[58149]: Class PBGadgetFunctions is implemented in both /Users/buildmaster/build/mac/branches/sdks/client/company_cmd (0x100076370) and /Users/buildmaster/build/mac/branches/sdks/client/libcompany_2.dylib (0x104ee86c8). One of the two will be used. Which one is undefined.
objc[58156]: Class PBApplicationDelegate is implemented in both /Users/buildmaster/build/mac/branches/sdks/client/company_cmd (0x100076190) and /Users/buildmaster/build/mac/branches/sdks/client/libcompany_2.dylib (0x100c664e8). One of the two will be used. Which one is undefined.
objc[58156]: Class PBApplication is implemented in both /Users/buildmaster/build/mac/branches/sdks/client/company_cmd (0x1000761b8) and /Users/buildmaster/build/mac/branches/sdks/client/libcompany_2.dylib (0x100c66510). One of the two will be used. Which one is undefined.
objc[58156]: Class PBMenuDelegate is implemented in both /Users/buildmaster/build/mac/branches/sdks/client/company_cmd (0x100076230) and /Users/buildmaster/build/mac/branches/sdks/client/libcompany_2.dylib (0x100c66588). One of the two will be used. Which one is undefined.
objc[58156]: Class PBMenuObject is implemented in both /Users/buildmaster/build/mac/branches/sdks/client/company_cmd (0x100076280) and /Users/buildmaster/build/mac/branches/sdks/client/libcompany_2.dylib (0x100c665d8). One of the two will be used. Which one is undefined.
objc[58156]: Class PBGadgetList is implemented in both /Users/buildmaster/build/mac/branches/sdks/client/company_cmd (0x1000762a8) and /Users/buildmaster/build/mac/branches/sdks/client/libcompany_2.dylib (0x100c66600). One of the two will be used. Which one is undefined.
objc[58156]: Class PB_NSFlippedView is implemented in both /Users/buildmaster/build/mac/branches/sdks/client/company_cmd (0x100076320) and /Users/buildmaster/build/mac/branches/sdks/client/libcompany_2.dylib (0x100c66678). One of the two will be used. Which one is undefined.
objc[58156]: Class PBGadgetFunctions is implemented in both /Users/buildmaster/build/mac/branches/sdks/client/company_cmd (0x100076370) and /Users/buildmaster/build/mac/branches/sdks/client/libcompany_2.dylib (0x100c666c8). One of the two will be used. Which one is undefined.
Do I have to worry about this? Or is there something I'm doing wrong?