Displaying 2 results from an estimated 2 matches for "znwm".
Did you mean:
_znwm
2013 Jan 14
2
[LLVMdev] linking standard c++ functions @_Znam and @_Znwm
...ate the following functions. I know that these are standard c++
library functions but g++ cannot locate them. Now my question is that where
are these functions defined and how can I link them with my object files,
and actually what do they do?
declare noalias i8* @_Znam(i64)
declare noalias i8* @_Znwm(i64)
the emitted error messages are as follows:
undefined reference to `operator new[](unsigned long)'
undefined reference to `operator new(unsigned long)'
We are reaching the deadline of the project but I haven't found any
solution for this problem. So, please help me.
Any help wou...
2013 Jan 14
0
[LLVMdev] linking standard c++ functions @_Znam and @_Znwm
...w that these are standard c++
> library functions but g++ cannot locate them. Now my question is that where are
> these functions defined and how can I link them with my object files, and
> actually what do they do?
>
> |declare noalias i8* @_Znam(i64)
>
> declare noalias i8* @_Znwm(i64)
>
> the emitted error messages are as follows:
>
> undefined reference to `operator new[](unsigned long)'
>
> undefined reference to `operator new(unsigned long)'
>
> We are reaching the deadline of the project but I haven't found any solution for this probl...