printfs inside a shared object (dynamic library) not getting printed - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T01:31:48Zhttp://stackoverflow.com/feeds/question/743977http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/743977/printfs-inside-a-shared-object-dynamic-library-not-getting-printed0printfs inside a shared object (dynamic library) not getting printedgoldenmean2009-04-13T14:07:00Z2009-06-26T08:00:01Z
<p>Hello,</p>
<p>I have a shared object which i create on windows using Real View developer suite tool linked command on windows host- </p>
<p>armlink -o mylib.so <"my *.o files given here"></p>
<p>Then i link an application with this mylib.so shared library on linux using gcc tools.</p>
<p>I have printf statements inside functions in this mylib.so, but when I run the final executable, i do not get any printf outputs on console.(stdio.h is inlcuded wherever printfs are called)</p>
<p>So is there any known issue with shared libraries which cause printf or any system functions/system calls/run time library functions not to work correctly? </p>
<p>Or is that got to do with my peculiar setup of making a shared library on windows based compiler tool chain but linking this shared library with an application on linux-gcc compiler tools?</p>
<p>Thank you.</p>
<p>-AD </p>
http://stackoverflow.com/questions/743977/printfs-inside-a-shared-object-dynamic-library-not-getting-printed/745660#7456600Answer by hlovdal for printfs inside a shared object (dynamic library) not getting printedhlovdal2009-04-13T22:42:54Z2009-04-13T22:42:54Z<p>Since your target is arm, and I assume this is C it should not be a problem to compile some files on windows and then link on linux. Have you verified this however? I would suggest making a hello.so on windows, linked from hello.c:</p>
<pre><code>#include <stdio.h>
void hello(void) {printf("Hello\n");}
</code></pre>
<p>and then link main from main.c on linux:</p>
<pre><code>void hello(void);
int main(int argc, char *argv[]){ hello(); return 0; }
</code></pre>
<p>as a minimum compiler chain test.</p>
<p><hr /></p>
<p>If you call printf from code in defined in your final executable (i.e. not code from your shared library) do you get any output from that?</p>
<p><hr /></p>
<p>Does</p>
<pre><code>strings --print-file-name -a mylib.so final_executable | grep "string from printf in shared library"
</code></pre>
<p>return two occurenses?</p>
<p><hr /></p>
<p>Are there any references to printf in</p>
<pre><code>readelf -a mylib.so
readelf -a final_executable
</code></pre>
<p>?</p>