我需要将readline.h库导入Windows。我已经尝试在这里导入带有库的文件夹: C:\ Qt的\工具\ mingw492_32 \ i686的-W64-的mingw32 \包括 它是一个带有history.h,chardefs.h,keymaps.h,readline.h等的库。
但是当我尝试编译这样的程序时:
if ((line= readline("my_prompt$ ")) == NULL)
exit(0);
add_history(line);
我收到了这条消息:
error: undefined reference to `add_history'
error: undefined reference to `impl__readline'
我真的需要它在我的机器上运行该库。非常感谢你的帮助!
答案 0 :(得分:0)
您需要将库路径添加到.pro文件中(不您的Makefile - 每次更改项目配置中的任何内容时都会重写此文件):
LIBS += -lreadline