Skip to content

Commit d7ba965

Browse files
committed
✨ Add LinuxArm64 commandline for UE5
1 parent 1cfed92 commit d7ba965

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

UnrealBinaryBuilder/MainWindow.xaml

+2-3
Original file line numberDiff line numberDiff line change
@@ -157,8 +157,7 @@
157157
<hc:TabItem Header="Compile" ToolTip="Various options to choose how you want to compile Unreal Engine.">
158158
<Grid x:Name="CompileMainGrid">
159159
<Grid.BindingGroup>
160-
<BindingGroup Name="EngineChanged">
161-
</BindingGroup>
160+
<BindingGroup Name="EngineChanged"/>
162161
</Grid.BindingGroup>
163162
<hc:SimplePanel HorizontalAlignment="Left" VerticalAlignment="Top" Margin="10,10,0,0" Height="123" Width="480">
164163
<TextBox x:Name="CustomBuildXMLFile" Text="{Binding CustomBuildFile}" hc:InfoElement.Placeholder="(Optional) Choose custom build XML file." hc:InfoElement.Necessary="True" Style="{StaticResource TextBoxExtend}" HorizontalAlignment="Left" VerticalAlignment="Top" Width="270" Margin="0,40,0,0"/>
@@ -175,7 +174,7 @@
175174
<CheckBox x:Name="bWithWin32" Content="Windows 32" Margin="10" IsChecked="{Binding bWithWin32}" IsEnabled="{Binding SupportWin32, BindingGroupName=EngineChanged, Mode=OneWay, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type local1:MainWindow}}}"/>
176175
<CheckBox x:Name="bWithMac" Content="Mac" Margin="10" IsChecked="{Binding bWithMac}" />
177176
<CheckBox x:Name="bWithLinux" Content="Linux" Margin="10" IsChecked="{Binding bWithLinux}" />
178-
<CheckBox x:Name="bWithLinuxAArch64" Content="Linux AArch 64" Margin="10" IsChecked="{Binding bWithLinuxAArch64}" IsEnabled="{Binding SupportLinuxAArch64, BindingGroupName=EngineChanged, Mode=OneWay, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type local1:MainWindow}}}"/>
177+
<CheckBox x:Name="bWithLinuxAArch64" Content="Linux 64" Margin="10" IsChecked="{Binding bWithLinuxAArch64}" IsEnabled="{Binding SupportLinuxAArch64, BindingGroupName=EngineChanged, Mode=OneWay, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type local1:MainWindow}}}"/>
179178
<CheckBox x:Name="bWithAndroid" Content="Android" Margin="10" IsChecked="{Binding bWithAndroid}" />
180179
<CheckBox x:Name="bWithIOS" Content="IOS" Margin="10" IsChecked="{Binding bWithIOS}" />
181180
<CheckBox x:Name="bWithHTML5" Content="HTML 5" Margin="10" IsChecked="{Binding bWithHTML5}" IsEnabled="{Binding SupportHTML5, BindingGroupName=EngineChanged, Mode=OneWay, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type local1:MainWindow}}}" />

UnrealBinaryBuilder/MainWindow.xaml.cs

+8-2
Original file line numberDiff line numberDiff line change
@@ -1012,7 +1012,11 @@ private string PrepareCommandline()
10121012
GetConditionalString(bWithXboxOne.IsChecked));
10131013
}
10141014

1015-
if (SupportLinuxAArch64)
1015+
if (SupportLinuxArm64)
1016+
{
1017+
CommandLineArgs += string.Format(" -set:WithLinuxArm64={0}", GetConditionalString(bWithLinuxAArch64.IsChecked));
1018+
}
1019+
else if (SupportLinuxAArch64)
10161020
{
10171021
CommandLineArgs += string.Format(" -set:WithLinuxAArch64={0}", GetConditionalString(bWithLinuxAArch64.IsChecked));
10181022
}
@@ -1238,7 +1242,9 @@ private bool IsUnrealEngine4()
12381242

12391243
public bool SupportHTML5 => GetEngineValue() < 4.24;
12401244

1241-
public bool SupportLinuxAArch64 => GetEngineValue() >= 4.24;
1245+
public bool SupportLinuxAArch64 => IsUnrealEngine4() && GetEngineValue() >= 4.24;
1246+
1247+
public bool SupportLinuxArm64 => IsUnrealEngine4() == false;
12421248

12431249
public bool SupportConsoles => GetEngineValue() <= 4.24;
12441250

0 commit comments

Comments
 (0)