I am running CentOS 7 (64 bit). I am trying to build a project and I am getting this error.

fatal error: uuid/uuid.h: No such file or directory #include <uuid/uuid.h> ^ compilation terminated. make: *** [all] Error 1 

Is this related to a missing package? I have already installed uuid-devel. What package should I install to fix this problem? Thanks!

1

1 Answer

Installing the development package libuuid-devel as suggested here, fixed the issue.

sudo yum install libuuid libuuid-devel 
5

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy