1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-17 07:44:09 +02:00

Improved calling convention for aarch64

This commit is contained in:
Brian Fiete 2022-01-14 06:23:36 -05:00
parent a69dd47cea
commit 5bc9642d26
6 changed files with 136 additions and 13 deletions

View file

@ -317,12 +317,13 @@ namespace IDE
bool QueueProjectGNULink(Project project, String targetPath, Workspace.Options workspaceOptions, Project.Options options, String objectsArg)
{
if (options.mBuildOptions.mBuildKind == .Intermediate)
return true;
bool isDebug = gApp.mConfigName.IndexOf("Debug", true) != -1;
bool isMinGW = false;
#if BF_PLATFORM_WINDOWS
bool isWSL = mPlatformType == .Linux;
String llvmDir = scope String(IDEApp.sApp.mInstallDir);