I am new to the C language and keep getting this error whenever I compile my C code with the command cc prompt.c
. I get this error:
Undefined symbols for architecture x86_64:
"_add_history", referenced from:
_main in prompt-66f61f.o
"_readline", referenced from:
_main in prompt-66f61f.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
Here is my code :
#include <stdio.h>
#include <stdlib.h>
#include <editline/readline.h>
int main(int argc, char** argv) {
/* Print Version and Exit Information */
puts("Lispy Version 0.0.0.0.1");
puts("Press Ctrl+c to Exit\n");
/* In a never ending loop */
while (1) {
/* Output our prompt and get input */
char* input = readline("lispy> ");
/* Add input to history */
add_history(input);
/* Echo input back to user */
printf("No you're a %s\n", input);
/* Free retrieved input */
free(input);
}
return 0;
}
I am writing this program on a Macbook Air running OSX 10.10.3, if that helps.
I am just starting to learn the C language so don't judge me if this question is really simple, there were no results when I searched for it.
Any help would be greatly appreciated. Thanks!