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 1Is this related to a missing package? I have already installed uuid-devel. What package should I install to fix this problem? Thanks!
11 Answer
Installing the development package libuuid-devel as suggested here, fixed the issue.
sudo yum install libuuid libuuid-devel 5