This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
math.h
- To: egcs-bugs at egcs dot cygnus dot com
- Subject: math.h
- From: <celio at hades dot utp dot edu dot co>
- Date: Mon, 6 Mar 2000 16:17:11 -0500 (COT)
please send me the answer to:
gmontes@utp.edu.co or celio@linux.utp.edu.co
On Mon, 6 Mar 2000 celio@hades.utp.edu.co wrote:
> when i try to use any function from math.h pow, sin, cos, etc, i get the
> following message: /tmp/cc5Ig4Rz.o: In function `main':
> /tmp/cc5Ig4Rz.o(.text+0x15): undefined reference to `sinl'
> /tmp/cc5Ig4Rz.o(.text+0x59): undefined reference to `csinl'
> /tmp/cc5Ig4Rz.o(.text+0x8e): undefined reference to `sin'
> /tmp/cc5Ig4Rz.o(.text+0xd1): undefined reference to `csin'
> /tmp/cc5Ig4Rz.o(.text+0x102): undefined reference to `sinf'
> /tmp/cc5Ig4Rz.o(.text+0x141): undefined reference to `csinf' collect2: ld
> returned 1 exit status when i use "tgmath.h" or the following if i use
> math.h:
> /tmp/ccLaU4pw.o: In function `main': /tmp/ccLaU4pw.o(.text+0xb):
> undefined reference to `sin'
> collect2: ld returned 1 exit status
>
> the source code is:
> #include <math.h> #include <stdio.h>
>
> int main() {
> printf("%lf\n", sin(1));
> return 0;
> }
>
>