'RTLD_NEXT' undeclared

前端 未结 4 772
半阙折子戏
半阙折子戏 2020-12-29 02:29

I\'m trying to compile a C program but I get the error \'RTLD_NEXT\' undeclared. I think this is supposed to be defined in dlfcn.h which the c program includes, but when I

4条回答
  •  生来不讨喜
    2020-12-29 03:25

    There must be one underscore. #define _GNU_SOURCE Further, this must be your first preprocessor directive.For example:

    #define _GNU_SOURCE  
    #include 
    

提交回复
热议问题