<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Thu, Sep 4, 2014 at 4:42 AM, David Sela <span dir="ltr"><<a href="mailto:sela.david@gmail.com" target="_blank">sela.david@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div dir="ltr"><div>Hi,</div><div><br></div>I want to have some functions in my code inline so I use the <b>inline </b>keyword:<div>
<br></div><div><i><b>inline </b>void foo() {}</i></div><div><br></div><div>On some functions the compiler inlines the function but it fails to do so on other functions and thus I get a linkage error:</div>

<div><br></div><div><i>error: undefined reference to 'foo'</i><br></div><div><br></div><div>What are the conditions that make the compiler refuse inline?</div></div></blockquote><div><br></div><div>There are many reasons:</div>
<div>- recursion</div><div>- varargs</div><div>- code size</div><div>- general unprofitability</div><div>- compiling with -O0</div><div><br></div><div>It sounds like you're having trouble with C99 inline.  Make sure to have a single .c file that redeclares the inline function without 'inline' like so:</div>
<div>// foo.h</div><div>inline int foo() { return 42; }</div><div>// foo.c</div><div>int foo();</div><div><br></div><div>The redeclaration will force the compiler to emit a strong definition in that TU, preventing linkage errors, so long as you only do it in one TU.  See here for more info:</div>
<div><a href="http://www.greenend.org.uk/rjk/tech/inline.html">http://www.greenend.org.uk/rjk/tech/inline.html</a><br></div><div><br></div><div><br></div></div></div></div>