That&nbsp;one looks (clearly) like a GCC 4.3 error. This is how you would troubleshoot similar errors (eg. &#39;foo&#39; was not declared in this scope):<br><br>1) man foo<br>2) notice the &quot;#include &lt;blah.h&gt;&quot;&nbsp;<br>
3) Inject the include into the troublesome file; FoohBlah.cpp<br>----a) You may use &quot;#include &quot;blah.h&quot; or &quot;#include &lt;blah.h&gt;&quot;<br>----b) It is advised to prepend a c and remove .h instead since we&#39;re dealing with c files and headers; &quot;#include &lt;cblah&gt;&quot;<br>
<br>So in this case, it looks like RtAudio.cpp would need &lt;cstring&gt; and &lt;cstdlib&gt;. I would do the following from the build dir:<br><br>sed -i &#39;-e/#/{;s/#/#include &lt;cstring&gt;\n#include &lt;cstdlib&gt;\n#/;:a&#39; &#39;-en;ba&#39; &#39;-e}&#39; $(find -name RtAudio.cpp)<br>
<br>Maybe awk will be shorter but I don&#39;t know enough of it.<br>