tonibin@xxxxxxxxx writes: > /tmp/cctlMXxf.o(.text+0x948): In function `parseString': > : undefined reference to `pow' You need to link against the math library by using -lm, as in: gcc -o foo foo.o -lm Ian
tonibin@xxxxxxxxx writes: > /tmp/cctlMXxf.o(.text+0x948): In function `parseString': > : undefined reference to `pow' You need to link against the math library by using -lm, as in: gcc -o foo foo.o -lm Ian