I am new to C ++ programming and am currently working on an llvm
development project. When I link the object files created by llc, my linker cannot find the following functions. I know that these are standard C ++ library functions, but using -lstdc++
does not work. Now my question is where are these functions defined and how can I relate them to my object files, and in fact what do they do?
declare noalias i8* @_Znam(i64) declare noalias i8* @_Znwm(i64)
source share