miscfunctions: fix cross build

This commit is contained in:
Vaxry 2024-11-18 14:35:09 +00:00
parent 6744bb57c6
commit 505c1f8f4a

View file

@ -609,7 +609,7 @@ void logSystemInfo() {
#if defined(__DragonFly__) || defined(__FreeBSD__) #if defined(__DragonFly__) || defined(__FreeBSD__)
const std::string GPUINFO = execAndGet("pciconf -lv | grep -F -A4 vga"); const std::string GPUINFO = execAndGet("pciconf -lv | grep -F -A4 vga");
#elif defined(__arm__) || defined(__aarch64__) #elif defined(__arm__) || defined(__aarch64__)
const std::string GPUINFO; std::string GPUINFO;
const std::filesystem::path dev_tree = "/proc/device-tree"; const std::filesystem::path dev_tree = "/proc/device-tree";
try { try {
if (std::filesystem::exists(dev_tree) && std::filesystem::is_directory(dev_tree)) { if (std::filesystem::exists(dev_tree) && std::filesystem::is_directory(dev_tree)) {