- Newest
- Most votes
- Most comments
Hello there! I had the same issue in 5.4, and this solution worked for me: You need to add bUseAdaptiveUnityBuild = false; to your <ProjectName>Editor.Target.cs file — after that, everything compiled successfully.
The issue you're experiencing with compiling the GameLift plugin on Unreal Engine 5.5.1 appears to be related to compatibility problems between the plugin and the engine version. This is a known issue that has persisted from earlier versions of UE5.
The errors you're seeing, particularly those related to syntax errors in header files like AccountFilterType.h, DeploymentTargets.h, and StackSetOperation.h, suggest that there might be incompatibilities between the AWS SDK used by the GameLift plugin and the version of the engine you're using.
To resolve this issue, you could try the following steps:
-
Ensure you have the latest version of the GameLift plugin installed. AWS periodically updates their plugins to maintain compatibility with newer engine versions.
-
Check if there are any specific instructions or patches provided by AWS for using the GameLift plugin with UE 5.5.1. Sometimes, there are interim solutions provided for newer engine versions.
-
If possible, try using an older version of the Unreal Engine (like 5.0 or 5.1) to see if the issue persists. This can help determine if it's a specific incompatibility with UE 5.5.1.
-
Consider reaching out to AWS support or posting on their forums for the most up-to-date information on compatibility and any potential workarounds.
-
As a last resort, you might need to manually modify the plugin code to resolve the syntax errors, but this should be done cautiously and only if you're experienced with both the plugin and engine internals.
Remember that plugin compatibility can sometimes lag behind engine updates, so it's possible that an official fix or update from AWS might be necessary to fully resolve this issue with UE 5.5.1.
Sources
Gamelift server build: File at path <path>/server.x86_64 is not executable | AWS re:Post
Amazon GameLift Resources: GameLift Feature | Amazon Web Services
Relevant content
- asked 10 months ago
- asked 16 days ago
- asked 7 years ago
- AWS OFFICIALUpdated 2 years ago
Thank you! It solved my issue too!