<div dir="ltr"><div style class="markdown-here-wrapper" id="markdown-here-wrapper-901658"><p style="margin:1.2em 0px!important">hi, in a simple project built with a simple Makefile, there are two libraries linked: math.h and gsl (gnu scientific library)</p>

<p style="margin:1.2em 0px!important">while the semantic analysis finds the latter and it compiles and runs fine, it has problems with math.h, telling me that it can’t find the declaration of “sqrt”.</p>
<p style="margin:1.2em 0px!important">Makefile:</p>
<pre style="font-size:0.85em;font-family:Consolas,Inconsolata,Courier,monospace;font-size:1em;line-height:1.2em;margin:1.2em 0px"><code style="font-size:0.85em;font-family:Consolas,Inconsolata,Courier,monospace;margin:0px 0.15em;padding:0px 0.3em;white-space:pre-wrap;border:1px solid rgb(234,234,234);background-color:rgb(248,248,248);border-radius:3px 3px 3px 3px;display:inline;white-space:pre;overflow:auto;border-radius:3px 3px 3px 3px;border:1px solid rgb(204,204,204);padding:0.5em 0.7em;display:block!important;display:block;padding:0.5em;color:rgb(51,51,51);background:none repeat scroll 0% 0% rgb(248,248,255)" class="language-cpp">CC=clang
CFLAGS=--<span style="color:rgb(0,134,179)" class="built_in">std</span>=c11 -Wall -pedantic
LDFLAGS=-lgsl -lgslcblas -lm

debug:
    $(CC) $(CFLAGS) -g -o c-pcor main.c $(LDFLAGS)
clean:
    rm -vfr *~ c-pcor</code></pre>
<p style="margin:1.2em 0px!important">main.h (excerpt):</p>
<pre style="font-size:0.85em;font-family:Consolas,Inconsolata,Courier,monospace;font-size:1em;line-height:1.2em;margin:1.2em 0px"><code style="font-size:0.85em;font-family:Consolas,Inconsolata,Courier,monospace;margin:0px 0.15em;padding:0px 0.3em;white-space:pre-wrap;border:1px solid rgb(234,234,234);background-color:rgb(248,248,248);border-radius:3px 3px 3px 3px;display:inline;white-space:pre;overflow:auto;border-radius:3px 3px 3px 3px;border:1px solid rgb(204,204,204);padding:0.5em 0.7em;display:block!important;display:block;padding:0.5em;color:rgb(51,51,51);background:none repeat scroll 0% 0% rgb(248,248,255)" class="language-bash"><span style="color:rgb(153,153,136);font-style:italic" class="comment">#include <stdio.h></span>
<span style="color:rgb(153,153,136);font-style:italic" class="comment">#include <stdlib.h></span>
<span style="color:rgb(153,153,136);font-style:italic" class="comment">#include <math.h></span>
<span style="color:rgb(153,153,136);font-style:italic" class="comment">#include <stdbool.h></span>

<span style="color:rgb(153,153,136);font-style:italic" class="comment">#include <gsl/gsl_matrix.h></span></code></pre>
</div></div>