我在将ncurses静态链接到我的程序之一时遇到一些问题
这是一个非常简单的示例程序:
#include<ncurses.h>
int main(){
initscr();
printw("Hello world\n");
refresh();
getch();
endwin();
return 0;
}
当我用
gcc -static -lncurses hello_curses.c -o curses
我得到这些错误:
/tmp/ccwHJ6o1.o: In function `main':
curses_hello.c:(.text+0x5): undefined reference to `initscr'
curses_hello.c:(.text+0x14): undefined reference to `printw'
curses_hello.c:(.text+0x1b): undefined reference to `stdscr'
curses_hello.c:(.text+0x20): undefined reference to `wrefresh'
curses_hello.c:(.text+0x27): undefined reference to `stdscr'
curses_hello.c:(.text+0x2c): undefined reference to `wgetch'
curses_hello.c:(.text+0x31): undefined reference to `endwin'
collect2: ld returned 1 exit status
我有点困惑为什么这不起作用。我在这里想念什么?
最佳答案
您需要在命令行末尾传递-l
选项:
gcc -static hello_curses.c -o curses -lncurses
当编译器遇到
-lfoo
时,它将链接上一个文件已请求的foo
中的所有符号。如果将-lfoo
放在开头,则尚未请求任何符号,因此没有链接符号。关于c - 将ncurses静态链接到程序,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3514852/