<br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;"><div><div class="h5">
&gt; Undefined symbols:<br>
&gt;   &quot;_dumpPrimTraceLog&quot;, referenced from:<br>
&gt;       _error in sqMacMain.o<br>
&gt; ld: symbol(s) not found<br>
&gt; collect2: ld returned 1 exit status<br>
&gt;<br>
&gt;<br>
</div></div>oh.. this method is defined in CoInterpreter, but not in StackInterpreter.<br>
<br>
So, you can fix that in two ways:<br>
- add empty dumpPrimTraceLog  for StackInterpreter. Like follwoing:<br>
dumpPrimTraceLog<br>
        &quot;The prim trace log is a circular buffer of entries. If there is<br>
         an entry at primTraceLogIndex \\ PrimTraceLogSize it has entries.<br>
         If there is something at primTraceLogIndex it has wrapped.&quot;<br>
        &lt;api&gt;<br>
        &lt;inline: false&gt;<br>
  &quot;do nothing&quot;<br></blockquote><div><br><br>Thanks Igor. This did the trick :)<br>Now it compiles and I can even start an image!<br> </div><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">

<br>
or, in<br>
sqMacMain.c<br>
use #ifdefs and detect if you building coInterpreter or stack<br>
interpreter , in order to avoid using this function, because its not<br>
available  in StackInterpreter.<br>
<br>
I think best would be to simply add it to StackInterpreter and don&#39;t<br>
mess with C code.<br>
<div class="im"><br>
<br>
&gt;<br>
&gt; So....I will continue trying to see what the problem is.<br>
&gt;<br>
&gt;&gt;<br>
</div>--<br>
<div><div></div><div class="h5">Best regards,<br>
Igor Stasenko AKA sig.<br>
</div></div></blockquote></div><br>