From 3684d2dde2edd1ead40a67150de70ece53951b77 Mon Sep 17 00:00:00 2001 From: AM_Erizur Date: Wed, 18 Mar 2026 17:06:16 -0500 Subject: [PATCH 1/2] Basic stuff to get it semi-compiling on linux intrin.h is Windows exclusive, so I just made the compiler ignore that include and provide the one that is available on GCC, Which should also target clang, because it is also provided (?). However, i still cannot get it running due to several header errors related to dolphin/os functions. Might just be my development environment. (gitignored my .nix files just incase) --- .gitignore | 3 +++ include/types.h | 8 +++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 08e75080..0b9440e8 100644 --- a/.gitignore +++ b/.gitignore @@ -41,6 +41,9 @@ compile_commands.json !requirements.txt *.exe +# *.nix (Nix related stuff that should not bother anyone else) +*.nix + # For saving work files into (like IDB) temp/ diff --git a/include/types.h b/include/types.h index cf463635..ebf4a5e7 100644 --- a/include/types.h +++ b/include/types.h @@ -7,7 +7,13 @@ #include #include #include -#include + +#ifdef _MSC_VER + #include +#else + #include +#endif + #include #include "macros.h" From 08c69b819315c9a2f8db6d146779b6543e85e0de Mon Sep 17 00:00:00 2001 From: AM_Erizur Date: Wed, 18 Mar 2026 17:09:42 -0500 Subject: [PATCH 2/2] Upper aurora's git tag Seems like it doesn't do anything relevant either way, as the CPM_aurora_SOURCE setter just defines a local aurora repository as the dependency source. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e64deb1e..7f019e2f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -102,7 +102,7 @@ CPMAddPackage( NAME aurora unset(_link_lower) GITHUB_REPOSITORY encounter/aurora - GIT_TAG bd20b65d59c2bd119e078ee87a8b896cc82994d2 + GIT_TAG 156f9a65e38db18a8fc93b30271703e58fa339f5 OPTIONS "AURORA_ENABLE_GX OFF" )