Renamed member variables and parameters.
Some checks failed
Build & Release / Linux-AMD64-Build (push) Failing after 10s
Build & Release / Linux-AARCH64-Build (push) Failing after 14s
Build & Release / Windows-AMD64-Build (push) Successful in 4m16s

This commit is contained in:
Arron Nelson 2025-03-26 10:29:20 -07:00
parent 1e55b11eed
commit 86149d246a
4 changed files with 29 additions and 6 deletions

View File

@ -214,7 +214,10 @@ if (IS_OS_WINDOWS)
src/io/COM.cpp include/ehs/io/COM.h
src/system/CPU_MSVC_AMD64.asm src/HRNG_MSVC.asm src/Math_MSVC_AMD64.asm
src/io/Directory_W32.cpp include/ehs/io/Directory_W32.h
include/ehs/io/socket/ICMP_W32.h src/io/socket/ICMP_W32.cpp
)
add_link_options(-fno-exceptions -fno-rtti)
elseif (IS_OS_LINUX)
list(APPEND EHS_SOURCES
src/io/socket/UDP_BSD.cpp include/ehs/io/socket/UDP_BSD.h
@ -234,6 +237,8 @@ elseif (IS_OS_LINUX)
include/ehs/io/socket/ICMP_LNX.h src/io/socket/ICMP_LNX.cpp
)
add_compile_options(/EHs- /GR-)
#set(LINUX_WINDOW_SYSTEM "Wayland" CACHE STRING "Linux Window System")
if (LINUX_WINDOW_SYSTEM STREQUAL "Wayland")

View File

@ -0,0 +1,10 @@
#pragma once
#include "BaseICMP.h"
namespace ehs
{
class ICMP : public virtual BaseICMP
{
};
}

View File

@ -0,0 +1,3 @@
//
// Created by Arron Nelson on 3/26/2025.
//

View File

@ -43,4 +43,9 @@ namespace ehs
void CPU::GetBrand(Char_8* input)
{
}
UInt_8 CPU::GetCacheLineSize()
{
return 0;
}
}