16

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,811
  • 7
  • 27
  • 42

1 Answers1

23

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

sudo yum install libuuid libuuid-devel
rustysys-dev
  • 103
  • 3
SyncMaster
  • 1,811
  • 7
  • 27
  • 42