我正在尝试将一个名为 libusb 的包导入我正在编写的 C++ 源文件中。这是代码:
#include <iostream>
#include <libusb.h>
using namespace std;
int main(){
cout << "hey there!" << endl;
}
当我运行 g++ 并尝试编译代码时,我收到此错误:
launcherDriver.cpp:2:20: error: libusb.h: No such file or directory
但是我知道已经安装了 libusb,因为当我输入 yum install libusb 时,我得到了这个:
Setting up Install Process
Package libusb-0.1.12-23.el6.x86_64 already installed and latest version
Nothing to do
我需要做什么才能成功导入 libusb 包。