我正在使用 SLRE ( http://slre.sourceforge.net/ ) 在 C 程序中进行 REGEX 检查。我包括头文件,然后我执行以下操作:
void checkRegex() {
struct slre slre;
struct cap captures[4+1];
if(!slre_compile(&slre, "regularexpression") {
printf("error");
}
}
我正在使用该命令进行编译:gcc example1.c -o test.cgi -L. -lconfig
我得到了那个错误:example1.c:(.text+0x1af3): undefined reference to 'slre_compile'
任何想法我做错了什么?