找不到libudev开发包

问题描述 投票:0回答:5

我正在编写一个应用程序自动检测设备是否已插入/拔出。

我使用 C++ 和 Qt 框架。 libudev.h包含在我的代码中。 我实际上通过

sudo apt-get install libudev-dev
成功安装了libudev-dev包,但QtCreator仍然有错误消息:
libudev development package not found

文件.pro:

...
CONFIG   += console c++11
CONFIG   -= app_bundle
unix: CONFIG += link_pkgconfig
unix: PKGCONFIG += libudev
HEADERS += DeviceManager.h
SOURCES += main.cpp \
  DeviceManager.cpp
...

DeviceManager.h 文件:

#ifndef DEVICEMANAGER_H
#define DEVICEMANAGER_H

#include <QObject>
#include <QDebug>
#include <QSet>
#include <libudev.h>

#include "DeviceModel.h"

class DeviceManager : public QObject
{
    Q_OBJECT
public:
    explicit DeviceManager(QObject *parent = 0);

    QSet<DeviceModel *> getDevices();
    QStringList getDevicePaths();

private:
    QSet<DeviceModel *> pluggedDevices;

};
#endif // DEVICEMANAGER_H

DeviceManager.cpp 文件:

#include "DeviceManager.h"

DeviceManager::DeviceManager(QObject *parent) :
    QObject(parent)
{
}

QSet<DeviceModel *> DeviceManager::getDevices()
{
    QSet<DeviceModel *> devices = QSet<DeviceModel *>();
    struct udev *udev;
    struct udev_enumerate *enumerate;
    struct udev_list_entry *dev_list, *dev_list_entry;
    struct udev_device *dev;
    struct udev_monitor *mon;

    /* Create the udev object */
    udev = udev_new();
    if (!udev)
    {
        qDebug() << "Can't create udev";
        return devices;
    }

    /* Set up a monitor to monitor hidraw devices */
    mon = udev_monitor_new_from_netlink(udev, "udev");
    udev_monitor_filter_add_match_subsystem_devtype(mon, "usb", "usb_device");
    udev_monitor_enable_receiving(mon);

    enumerate = udev_enumerate_new(udev);
    udev_enumerate_add_match_subsystem(enumerate, "usb");
    udev_enumerate_scan_devices(enumerate);
    dev_list = udev_enumerate_get_list_entry(enumerate);
    QString vendorID, serialNumber, devName, deviceName;
    udev_list_entry_foreach(dev_list_entry, dev_list)
    {
        const char *path;
        path = udev_list_entry_get_name(dev_list_entry);
        dev = udev_device_new_from_syspath(udev, path);

        udev_device_get_parent_with_subsystem_devtype(dev, "usb", "usb_device");

        if (!dev)
        {
            qDebug() << "Unable to find parent usb device.";
            return devices;
        }
        vendorID = udev_device_get_property_value(dev, "ID_VENDOR_ID");
        devName = udev_device_get_property_value(dev, "DEVNAME");
        if (!vendorID.isNull() && vendorID.compare("04e8") == 0)    // vendor ID of Samsung devices
        {
                DeviceModel *device = new DeviceModel();
                serialNumber = udev_device_get_property_value(dev, "ID_SERIAL_SHORT");
                deviceName = QString(udev_device_get_property_value(dev, "DEVPATH")).split("/").last();
                if (!serialNumber.isNull())
                {
                    device->setDownloadMode(false);
                    device->setSerialNumber(serialNumber);
                }
                else if(!devName.isNull())
                {
                    device->setPath(devName);
                    device->setDownloadMode(true);
                }
                else
                    break;
                device->setName(deviceName);
                devices.insert(device);
        }
        udev_device_unref(dev);
    }
    /* Free the enumerator object */
    udev_enumerate_unref(enumerate);
    udev_unref(udev);
    this->pluggedDevices = devices;
    return devices;
}

QStringList DeviceManager::getDevicePaths()
{
    QStringList result;
    if (this->pluggedDevices.isEmpty())
    {
        return result;
    }
    foreach (DeviceModel *device, this->pluggedDevices)
    {
        result.append(device->getPath());
    }
    return result;
}

环境:

操作系统:Ubuntu 18.04.2 LTS

Qt Creator 4.5.2 基于 Qt 5.9.5(GCC 7.3.0,64 位)

你能帮我找个理由吗?

linux qt qt5 udev libudev
5个回答
10
投票

错误消息表明您缺少

libudev-dev
pkg-config
。既然您已经安装了
libudev-dev
,那么这意味着您缺少
pkg-config
工具。如果命令:

pkg-config --version

不打印类似:

0.29.1

那么你就错过了

pkg-config
工具。安装它:

sudo apt install pkg-config

这应该可以解决您的问题。请记住从项目文件中删除

LIBS += -ludev
。你只需要
PKGCONFIG += libudev


10
投票

我用这个,它的效果就像一个魅力

sudo apt-get install libudev-dev

还有一个是这个,我在网上找到的,但没试过。

build/install-build-deps.sh

3
投票

您需要将其安装到您的系统中。您可以简单地尝试这些命令

sudo apt-get update -y

sudo apt-get install -y libudev-dev


1
投票

如果安装

libudev-dev
pkg-config
后仍然存在问题,另一件事要检查是否使用了正确的
pkg-config
。 运行
which pkg-config
,对于 Ubuntu,它应该显示
/usr/bin/pkg-config
。 对我来说,它说
/home/linuxbrew/.linuxbrew/bin/pkg-config
这是错误的,因为我的
/home/linuxbrew/.linuxbrew/bin/
上有
PATH
。 然后我从我的
PATH
中删除了 linuxbrew bin 文件夹,错误就消失了。


0
投票

您可以使用 libudev 的动态加载器来消除对 libudev-dev 包的依赖,并支持所有版本的库。这是包装器https://github.com/alexbsys/udev_dynamic_wrapper

© www.soinside.com 2019 - 2024. All rights reserved.