编译错误:ini_dump.c :(。text + 0xde):对ini_parse的未定义引用

时间:2016-03-27 19:42:03

标签: c

我正在使用用C编写的inih(https://github.com/benhoyt/inih)。INI文件解析器。但是当我编译时,它给了我错误:

  

cc -Wall -o dump ini_dump.c

     

/tmp//ccwzQhqZ.o:在函数main中:   ini_dump.c :(。text + 0xde):对`ini_parse'的未定义引用

/* ini.h example that simply dumps an INI file without comments */

#include <stdio.h>
#include <string.h>
#include "../ini.h"

static int dumper(void* user, const char* section, const char* name,
                  const char* value)
{
    static char prev_section[50] = "";

    if (strcmp(section, prev_section)) {
        printf("%s[%s]\n", (prev_section[0] ? "\n" : ""), section);
        strncpy(prev_section, section, sizeof(prev_section));
        prev_section[sizeof(prev_section) - 1] = '\0';
    }
    printf("%s = %s\n", name, value);
    return 1;
}

int main(int argc, char* argv[])
{
    int error;

    if (argc <= 1) {
        printf("Usage: ini_dump filename.ini\n");
        return 1;
    }

    error = ini_parse(argv[1], dumper, NULL);
    if (error < 0) {
        printf("Can't read '%s'!\n", argv[1]);
        return 2;
    }
    else if (error) {
        printf("Bad config file (first error on line %d)!\n", error);
        return 3;
    }
    return 0;
}

1 个答案:

答案 0 :(得分:3)

ini_parse()在ini.c中定义,因此您也需要编译它。假设它与ini.h位于同一目录中,您应该可以编译这样的所有内容:

cc -Wall -o dump ../ini.c ini_dump.c