ams: support building unit test programs on windows/linux/macos

This commit is contained in:
Michael Scire 2022-03-06 12:08:20 -08:00 committed by SciresM
parent 9a38be201a
commit 64a97576d0
756 changed files with 33359 additions and 9372 deletions

View file

@ -18,10 +18,11 @@
namespace ams::os {
void InitializeForStratosphereInternal();
void Initialize();
}
#if defined(ATMOSPHERE_OS_HORIZON)
extern "C" {
/* Provide libnx address space allocation shim. */
@ -30,6 +31,7 @@ extern "C" {
}
}
#endif
namespace ams::hos {
@ -53,13 +55,15 @@ namespace ams::hos {
void InitializeForStratosphere() {
/* Initialize the global os resource managers. This *must* be done before anything else in stratosphere. */
os::InitializeForStratosphereInternal();
os::Initialize();
/* Initialize hos::Version API. */
hos::InitializeVersionInternal(CanAllowTemporaryApproximateVersion());
#if defined(ATMOSPHERE_OS_HORIZON)
/* Check that we're running under mesosphere. */
AMS_ABORT_UNLESS(IsUnitTestProgramForSetVersion() || svc::IsKernelMesosphere());
#endif
}
}