Open raphael10-collab opened 7 months ago
You'll need to include cstdint in a number of places:
diff --git a/src/library/base/base64.h b/src/library/base/base64.h
index 466a263..e3beb0a 100644
--- a/src/library/base/base64.h
+++ b/src/library/base/base64.h
@@ -1,6 +1,7 @@
#ifndef BASE64_H
#define BASE64_H
+#include <cstdint>
#include <string>
#include <vector>
diff --git a/src/library/os/linux/cpu_info.cpp b/src/library/os/linux/cpu_info.cpp
index cfb4efc..2a356dc 100644
diff --git a/src/library/base/base64.h b/src/library/base/base64.h
index 466a263..e3beb0a 100644
--- a/src/library/base/base64.h
+++ b/src/library/base/base64.h
@@ -1,6 +1,7 @@
#ifndef BASE64_H
#define BASE64_H
+#include <cstdint>
#include <string>
#include <vector>
diff --git a/src/library/os/linux/cpu_info.cpp b/src/library/os/linux/cpu_info.cpp
index cfb4efc..2a356dc 100644
--- a/src/library/os/linux/cpu_info.cpp
+++ b/src/library/os/linux/cpu_info.cpp
@@ -6,6 +6,7 @@
*/
#include <cpuid.h>
+#include <cstdint>
#include <string>
Following the indications here: https://github.com/open-license-manager/licensecc?tab=readme-ov-file#build-on-linux I tried to compile and build Licensecc in Ubuntu 23.10, but got a bunch of errors during
make
phase: