Undefined reference to 'pow' even though -lm is a compile flag. [C]

前端 未结 2 965
不思量自难忘°
不思量自难忘° 2020-12-10 16:36

Any reason

cc -g -lm -DBLITZ_HOST_IS_LITTLE_ENDIAN

would produce an error with code using math.h? Is it possible there\'s a d

相关标签:
2条回答
  • 2020-12-10 17:13

    I've recently suffer this problem using an automatic builder, namely drone.io.

    The problem was that gcc in Ubuntu 12.04 was linking by default with -Wl,--as-needed. In my case, the project was using autotools, which means I was too lazy to write anything to modify the compilation order. Instead, modifying as-needed flag fixed the problem.

    -gabriel_LDFLAGS = $(GLIB2_LIBS) $(DBUS_LIBS) -lssh
    +gabriel_LDFLAGS = -Wl,--no-as-needed $(GLIB2_LIBS) $(DBUS_LIBS) -lssh
    

    For full info, you can check the fixing commit in https://bitbucket.org/kikeenrique/gabriel/commits/f08eefdca3f7bb90f48f5a6fbfc8839422572508

    You can take a look to the log with errors BEFORE applying the fix and also you can take a look to the log without errors AFTER applying the fix.

    0 讨论(0)
  • 2020-12-10 17:28

    Instead of

    cc -g -lm -DBLITZ_HOST_IS_LITTLE_ENDIAN foo.c
    

    Try:

    cc -g -DBLITZ_HOST_IS_LITTLE_ENDIAN foo.c -lm
    

    When the linker searches a library, it links in modules that contain definitions for previously-undefined symbols.

    If the linker searches -lm before foo.o, then pow() is not yet undefined. Conversely, if foo.o comes first, it undefines pow(), which -lm can then resolve.


    EDIT: To accomplish this advice in your makefile, make these changes:

    CFLAGS=-g -DBLITZ_HOST_IS_LITTLE_ENDIAN
    LDLIBS=-lm
    
    ...
    
    asm: asm.c
            $(CC) $(CFLAGS) asm.c $(LDLIBS) -o asm
    
    0 讨论(0)
提交回复
热议问题