fix incorrect toolchain linkage for ue 5.7 linux arm64 builds
This commit is contained in:
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
This patch release resolves build issues affecting Unreal Engine `5.7` on Linux `Arm64` architecture.
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fixed an issue in UE `5.7` projects where Linux `Arm64` builds were incorrectly linking against third-party libraries compiled with Epic Native/Cross Toolchain `v25` (shipped with UE `5.6`), instead of the required Toolchain `v26` binaries (shipped with UE `5.7`).
|
||||
|
||||
## [2.7.1] - 2025-12-09
|
||||
|
||||
This patch release addresses a severe regression affecting UE `5.5` projects with specific settings.
|
||||
|
||||
@@ -99,7 +99,9 @@ public class SGCommonThirdPartyLibs : ModuleRules
|
||||
{
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "linux"));
|
||||
|
||||
#if UE_5_6_OR_LATER
|
||||
#if UE_5_7_OR_LATER
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v26"));
|
||||
#elif UE_5_6_OR_LATER
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v25"));
|
||||
#elif UE_5_5_OR_LATER
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v23"));
|
||||
|
||||
+3
-1
@@ -99,7 +99,9 @@ public class SGConnectShmThirdPartyLibs : ModuleRules
|
||||
{
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "linux"));
|
||||
|
||||
#if UE_5_6_OR_LATER
|
||||
#if UE_5_7_OR_LATER
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v26"));
|
||||
#elif UE_5_6_OR_LATER
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v25"));
|
||||
#elif UE_5_5_OR_LATER
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v23"));
|
||||
|
||||
@@ -99,7 +99,9 @@ public class SGConnectThirdPartyLibs : ModuleRules
|
||||
{
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "linux"));
|
||||
|
||||
#if UE_5_6_OR_LATER
|
||||
#if UE_5_7_OR_LATER
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v26"));
|
||||
#elif UE_5_6_OR_LATER
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v25"));
|
||||
#elif UE_5_5_OR_LATER
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v23"));
|
||||
|
||||
@@ -99,7 +99,9 @@ public class SGCoreShmThirdPartyLibs : ModuleRules
|
||||
{
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "linux"));
|
||||
|
||||
#if UE_5_6_OR_LATER
|
||||
#if UE_5_7_OR_LATER
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v26"));
|
||||
#elif UE_5_6_OR_LATER
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v25"));
|
||||
#elif UE_5_5_OR_LATER
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v23"));
|
||||
|
||||
@@ -99,7 +99,9 @@ public class SGCoreThirdPartyLibs : ModuleRules
|
||||
{
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "linux"));
|
||||
|
||||
#if UE_5_6_OR_LATER
|
||||
#if UE_5_7_OR_LATER
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v26"));
|
||||
#elif UE_5_6_OR_LATER
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v25"));
|
||||
#elif UE_5_5_OR_LATER
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v23"));
|
||||
|
||||
@@ -104,7 +104,9 @@ public class SGFmtThirdPartyLibs : ModuleRules
|
||||
{
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "linux"));
|
||||
|
||||
#if UE_5_6_OR_LATER
|
||||
#if UE_5_7_OR_LATER
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v26"));
|
||||
#elif UE_5_6_OR_LATER
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v25"));
|
||||
#elif UE_5_5_OR_LATER
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v23"));
|
||||
|
||||
@@ -99,7 +99,9 @@ public class SGLogThirdPartyLibs : ModuleRules
|
||||
{
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "linux"));
|
||||
|
||||
#if UE_5_6_OR_LATER
|
||||
#if UE_5_7_OR_LATER
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v26"));
|
||||
#elif UE_5_6_OR_LATER
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v25"));
|
||||
#elif UE_5_5_OR_LATER
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v23"));
|
||||
|
||||
@@ -104,7 +104,9 @@ public class SGLoguruThirdPartyLibs : ModuleRules
|
||||
{
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "linux"));
|
||||
|
||||
#if UE_5_6_OR_LATER
|
||||
#if UE_5_7_OR_LATER
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v26"));
|
||||
#elif UE_5_6_OR_LATER
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v25"));
|
||||
#elif UE_5_5_OR_LATER
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v23"));
|
||||
|
||||
@@ -99,7 +99,9 @@ public class SGSerialThirdPartyLibs : ModuleRules
|
||||
{
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "linux"));
|
||||
|
||||
#if UE_5_6_OR_LATER
|
||||
#if UE_5_7_OR_LATER
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v26"));
|
||||
#elif UE_5_6_OR_LATER
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v25"));
|
||||
#elif UE_5_5_OR_LATER
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v23"));
|
||||
|
||||
+3
-1
@@ -99,7 +99,9 @@ public class SGWjwwoodSerialThirdPartyLibs : ModuleRules
|
||||
{
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "linux"));
|
||||
|
||||
#if UE_5_6_OR_LATER
|
||||
#if UE_5_7_OR_LATER
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v26"));
|
||||
#elif UE_5_6_OR_LATER
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v25"));
|
||||
#elif UE_5_5_OR_LATER
|
||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v23"));
|
||||
|
||||
Reference in New Issue
Block a user