c - 简单的 libnotify "hello world"程序无法在 Ubuntu 20.04 上编译并出现链接器错误

标签 c ubuntu libnotify

我可能在这里遗漏了一些非常基本的东西,但由于某种原因,我无法在我的 Ubuntu 20.04 系统上成功链接 libnotify,即使一切都已正确安装并且 pkg-cfg(恕我直言)返回正确的选项......任何想法?

user@home:~/jabrac$ ldconfig -v | grep notify                                                                                                                                                                                                                                                                      
        libnotify.so.4 -> libnotify.so.4.0.0

user@home:~/jabrac$ dpkg -L libnotify-dev 
/.
/usr
/usr/include
/usr/include/libnotify
/usr/include/libnotify/notification.h
/usr/include/libnotify/notify-enum-types.h
/usr/include/libnotify/notify-features.h
/usr/include/libnotify/notify.h
/usr/lib
/usr/lib/x86_64-linux-gnu
/usr/lib/x86_64-linux-gnu/pkgconfig
/usr/lib/x86_64-linux-gnu/pkgconfig/libnotify.pc
/usr/share
/usr/share/doc
/usr/share/doc/libnotify-dev
/usr/share/doc/libnotify-dev/copyright
/usr/share/gir-1.0
/usr/share/gir-1.0/Notify-0.7.gir
/usr/lib/x86_64-linux-gnu/libnotify.so
/usr/share/doc/libnotify-dev/changelog.Debian.gz
user@home:~/jabrac$ ls -l /usr/lib/x86_64-linux-gnu/libnotify.so*
lrwxrwxrwx 1 root root    14 Mär 20  2020 /usr/lib/x86_64-linux-gnu/libnotify.so -> libnotify.so.4
lrwxrwxrwx 1 root root    18 Mär 20  2020 /usr/lib/x86_64-linux-gnu/libnotify.so.4 -> libnotify.so.4.0.0
-rw-r--r-- 1 root root 38984 Mär 20  2020 /usr/lib/x86_64-linux-gnu/libnotify.so.4.0.0

user@home:~/jabrac$ cat hello_world.c 
#include <libnotify/notify.h>
#include <stdio.h>

int main(int argc, char * argv[] ) 
{
    notify_init("Sample");
    NotifyNotification* n = notify_notification_new ("Hello world", 
                                 "some message text... bla bla",
                                  0);
    notify_notification_set_timeout(n, 10000); // 10 seconds

    if (!notify_notification_show(n, 0)) 
    {
        printf("show has failed\n");
        return -1;
    }
    return 0;
}
user@home:~/jabrac$ gcc `pkg-config --cflags --libs libnotify` hello_world.c 
/usr/bin/ld: /tmp/cckbaX1n.o: in function `main':
hello_world.c:(.text+0x1b): undefined reference to `notify_init'
/usr/bin/ld: hello_world.c:(.text+0x33): undefined reference to `notify_notification_new'
/usr/bin/ld: hello_world.c:(.text+0x48): undefined reference to `notify_notification_set_timeout'
/usr/bin/ld: hello_world.c:(.text+0x59): undefined reference to `notify_notification_show'
collect2: error: ld returned 1 exit status

user@home:~/jabrac$ pkg-config --cflags --libs libnotify
-pthread -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -lnotify -lgdk_pixbuf-2.0 -lgio-2.0 -lgobject-2.0 -lglib-2.0

最佳答案

正如@Someprogrammerdude 上面所说,您需要在程序之后指定 -l 选项。这是 gcc(1) 手册页中的相关部分:

-llibrary
...
It makes a difference where in the command you write this option; the linker searches and processes libraries and object files in the order they are specified. Thus, foo.o -lz bar.o searches library z after file foo.o but before bar.o. If bar.o refers to functions in z, those functions may not be loaded.

关于c - 简单的 libnotify "hello world"程序无法在 Ubuntu 20.04 上编译并出现链接器错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70195279/

相关文章:

pulseaudio - 缺少 Ubuntu 音量增加/减少通知

cygwin - 什么是 cygwin/Windows 相当于 Linux 的 notify-send

java - 内联条件否定

c - 无法理解如何在 C 中调整动态数组的大小

r - 在 ubuntu 16.04 中的 R 3.2.3 上安装 rgdal 时遇到问题

Java 闪烁光标 Ubuntu 终端

python-3.x - 使用 libnotify 的 Python 3 脚本作为 cron 作业失败

c - 为什么 char [] 作为静态

c - 变量二维数组访问时打印 "subscript of pointer to incomplete type"

python - Django 找不到项目应用程序 - 无法导入 x_app