I am getting warnings about duplicate symbols during my C compile on AIX 6.1 and it says:
ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information.
I have looked up on Google how to use these but no clear answer yet, can someone please tell me what I need to do in order to use -bloadmap or -bnoquiet?
Thanks for the help 😉
Lynton
Use either:
which will generate a
map.filewhich lists where the duplicate symbols come from.Or:
which will list the same information to
stdout.Example duplicate information:
which tells me I have a
mainfunction both int1.oandt2.o.