19

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!

SyncMaster
  • 1,899

1 Answers1

27

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

sudo yum install libuuid libuuid-devel
SyncMaster
  • 1,899