<div>          
    <div class="post-text">
        <p>I'm new to c++ programming and currently working on an <code>llvm</code>
 front-end development project. When I link the object files created by 
llc, my linker cannot locate 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?</p>

<pre><code>declare noalias i8* @_Znam(i64)

declare noalias i8* @_Znwm(i64)<br><br>the emitted error messages are as follows:<br><br>undefined reference to `operator new[](unsigned long)'<br><br>undefined reference to `operator new(unsigned long)'<br><br>We are reaching the deadline of the project but I haven't found any solution for this problem. So, please help me. <br>
Any help would be appreciated.<br></code></pre>

    </div></div>