Search code examples
pkg-configlibusb-1.0

Package libusb was not found in the pkg-config search path


I have installed pkg-config and libusb through brew

Now if I do

pkg-config --cflags --libs libusb

I get below message

Package libusb was not found in the pkg-config search path. Perhaps you should add the directory containing `libusb.pc' to the PKG_CONFIG_PATH environment variable No package 'libusb' found

So I followed this post and did

export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:/usr/local/Cellar/libusb/1.0.20/lib/pkgconfig"

But I still have the problem. What am I missing?

I am using MAC OSX El Capitan


Solution

  • Just run:

    pkg-config --cflags --libs /usr/local/Cellar/libusb/1.0.20/lib/pkgconfig/libusb-1.0.pc