I am creating some old code from projects that use static libraries. Now I have a lot of errors:
ld: warning: option -m is obsolete and being ignored
ld: duplicate symbol <function name>
Is there any way to force through assembly. From what I see, the “duplicate” functions are identical, it's just a build process that went away in passing. The project is really big (and a mess with inherited c and C ++ code), and I really want to avoid the waste investigating the build process. Is there a "quick fix"? I really only need to run this program once, so I can live with (some) stability issues.
source
share