mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-12-12 01:36:58 +00:00
build: gcc 14: add missing includes
This commit is contained in:
parent
1382ee0381
commit
84ce396afb
5 changed files with 12 additions and 2 deletions
|
|
@ -1,5 +1,9 @@
|
|||
#pragma once
|
||||
|
||||
#include <type_traits>
|
||||
#include <cstddef>
|
||||
#include <vector>
|
||||
|
||||
uint32 coreinit_allocFromSysArea(uint32 size, uint32 alignment);
|
||||
class SysAllocatorBase;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
#ifdef __GNUC__
|
||||
#define ATTRIBUTE_AVX2 __attribute__((target("avx2")))
|
||||
#define ATTRIBUTE_SSE41 __attribute__((target("sse4.1")))
|
||||
|
|
@ -9,6 +8,8 @@
|
|||
#define ATTRIBUTE_AESNI
|
||||
#endif
|
||||
|
||||
#include <string>
|
||||
|
||||
class CPUFeaturesImpl
|
||||
{
|
||||
public:
|
||||
|
|
@ -33,4 +34,4 @@ private:
|
|||
char m_cpuBrandName[0x40]{ 0 };
|
||||
};
|
||||
|
||||
extern CPUFeaturesImpl g_CPUFeatures;
|
||||
extern CPUFeaturesImpl g_CPUFeatures;
|
||||
|
|
|
|||
|
|
@ -4,6 +4,9 @@
|
|||
|
||||
#include <mutex>
|
||||
#include <atomic>
|
||||
#include <shared_mutex>
|
||||
#include <cassert>
|
||||
#include <string>
|
||||
|
||||
template<typename TType>
|
||||
class ConfigValueAtomic
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
#include <mutex>
|
||||
#include <thread>
|
||||
#include <atomic>
|
||||
#include <future>
|
||||
|
||||
#include <wx/listctrl.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
#include <charconv>
|
||||
#include <filesystem>
|
||||
#include <string_view>
|
||||
#include <set>
|
||||
|
||||
#include "util/math/vector2.h"
|
||||
#include "util/math/vector3.h"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue