diff options
| author | Rémi Verschelde <remi@verschelde.fr> | 2022-03-16 11:53:08 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-16 11:53:08 +0100 |
| commit | 9d732aa0cfcfd638c28ac8eb8149d912a5a3a642 (patch) | |
| tree | 25f86a745f3138fa0201506388e694558e934ed0 /modules | |
| parent | b1fbd8ab40fa133b048fe49928f0a8f1e9bd8527 (diff) | |
| parent | 98d0af7d5cd5fdba468ab88535a0152022467e85 (diff) | |
Merge pull request #58973 from bruvzg/gde_export
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/mono/editor/GodotTools/GodotTools/Export/AotBuilder.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/mono/editor/GodotTools/GodotTools/Export/AotBuilder.cs b/modules/mono/editor/GodotTools/GodotTools/Export/AotBuilder.cs index ed758cc137..e2f4d2f5fd 100644 --- a/modules/mono/editor/GodotTools/GodotTools/Export/AotBuilder.cs +++ b/modules/mono/editor/GodotTools/GodotTools/Export/AotBuilder.cs @@ -107,7 +107,7 @@ namespace GodotTools.Export ExecuteCompiler(FindCrossCompiler(compilerDirPath), compilerArgs, bclDir); // The Godot exporter expects us to pass the abi in the tags parameter - exporter.AddSharedObject(soFilePath, tags: new[] { abi }); + exporter.AddSharedObject(soFilePath, tags: new[] { abi }, ""); } } } @@ -134,7 +134,7 @@ namespace GodotTools.Export if (platform == OS.Platforms.MacOS) { - exporter.AddSharedObject(tempOutputFilePath, tags: null); + exporter.AddSharedObject(tempOutputFilePath, tags: null, ""); } else { |