Simplify managed method invoke generation for AOT vs JIT platforms

This commit is contained in:
Wojtek Figat
2023-01-08 13:50:45 +01:00
parent cfcf29a62e
commit 58844622a0
3 changed files with 129 additions and 126 deletions

View File

@@ -106,6 +106,11 @@ namespace Flax.Build
/// </summary>
public virtual bool HasExecutableFileReferenceSupport => false;
/// <summary>
/// Gets a value indicating whether that platform supports executing native code generated dynamically (JIT), otherwise requires ahead-of-time compilation (AOT).
/// </summary>
public virtual bool HasDynamicCodeExecutionSupport => true;
/// <summary>
/// Gets the executable file extension (including leading dot).
/// </summary>