om jag vill använda exp-funktionen i math.h med gcc, hur gör jag då? om jag kompilerar med g++ funkar det utan problem men med gcc så klagar kompilatorn:
gcc -o testexp testexp.c/tmp/ccmXm2Ae.o: In function `main':
testexp.c:(.text+0x23): undefined reference to `exp'
collect2: ld returnerade avslutningsstatus 1
några tips?
(sitter egentligen med ett större c-projekt, där jag redan har fått funktioner som bara lyckas kompilera med gcc... )
tack på förhand
test programmet:
#include <math.h>
#include <stdio.h>
main()
{
double s=0.23;
printf("%f \n", exp(-s));
}
gcc exp & math.h [LÖST]
gcc exp & math.h [LÖST]
Senast redigerad av 1 DrMegahertz, redigerad totalt 13 gånger.
- DrMegahertz
- Inlägg: 296
- Blev medlem: 06 maj 2006, 14:37
- OS: Ubuntu
- Utgåva: 14.04 Trusty Tahr LTS
- Ort: Södra Dalarna
-
- Inlägg: 6191
- Blev medlem: 14 jan 2007, 19:31
- OS: Ubuntu
- Utgåva: 22.10 Kinetic Kudu
- Ort: Stockholm
SV: gcc exp & math.h
Du måste länka med matematikbilbioteket, lägga bara till -lm på kommandoraden så ska det fungera.
SV: gcc exp & math.h
det funkade! tackar!