我正在编写有关构建自己的 LISP(http://www.buildyourownlisp.com/chapter4_interactive_prompt)的教程,由于某种原因,当我尝试编译时,我得到了这个:
REPL.c:4:10: fatal error: 'editline/readline.h' file not found
#include <editline/history.h>
^
1 error generated.
我已经安装了 macOS 开发人员工具,并且 brew 显示已安装 readline,当我尝试 brew install editline 时它不知道该怎么做。
这是我的代码:
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <editline/readline.h>
4 #include <editline/history.h>
5
6 int main(int argc, char** argv) {
7
8 /* version/exit info */
9 puts("Edward Version 0.0.1");
10 puts("Press Ctrl+c to Exit\n");
11
12 /* endless loop for main REPL */
13 while (1) {
14 /* output prompt and read line */
15 char* input = readline("lispy> ");
16
17 /* put input in history */
18 add_history(input);
19
20 /* Echo input back */
21 printf("No you're a %s\n", input);
22
23 /* free input */
24 free(input);
25 }
26 return 0;
27 }
这显然是非常基本的,但我真的很想让这个项目滚动,所以我希望我能解决这个问题。这是我用来编译的:
cc -std=c99 -Wall REPL.c -ledit -o REPL