Allow for better support for running on m1/2 machines

* So we need to account for 2 possible situations where you are running under and emulated process and a native process with a different target host in this case x64
This commit is contained in:
Andrew Spiering
2023-09-20 09:12:48 -07:00
parent 3ede4c2192
commit 821c373ae2
2 changed files with 22 additions and 2 deletions

View File

@@ -1,4 +1,5 @@
// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved.
using System.Runtime.InteropServices;
namespace Flax.Build.Platforms
{
@@ -41,5 +42,20 @@ namespace Flax.Build.Platforms
default: return false;
}
}
[DllImport ("c")]
public static unsafe extern int sysctlbyname (
string name, void* oldp, ulong *oldlenp, void* newp, ulong newlen);
public unsafe static bool GetProcessIsTranslated()
{
int ret = 0;
ulong size = sizeof (int);
if (sysctlbyname ("sysctl.proc_translated", &ret, &size, null, 0) == -1) {
return false;
}
return ret != 0;
}
}
}