This same issue just persists, please need some help, I am not into coding a designer trying to package my interactive visualization. Whenever I start the packaging, C++ compiler version for VS would be more advanced than what UE needs, updated UE to the latest version, still the same issues.
This is too little information.
The error is somewhere higher in the Log.
It would be nice if you can share whole Log.
There has been some issues with using the latest MSVC version, as mentioned in the third line you’ll need to use this version instead 14.38.33130
Open visual studio installer and modify your visual studio 22, go to individual component and install MSVC 14.38
Next you have 2 options, either uninstall any other MSVC version so it’s forced to use 14.38 or tell the compiler which version to use, you can do this by going to Documents\Unreal Engine\UnrealBuildTool if you don’t have this folder create it.
Inside add or modify BuildConfiguration.xml
Make your file look like this if you already have your own add the compiler version restriction.
<?xml version="1.0" encoding="utf-8" ?>
<Configuration xmlns="https://www.unrealengine.com/BuildConfiguration">
<WindowsPlatform>
<Compiler>VisualStudio2022</Compiler>
<CompilerVersion>14.38.33130</CompilerVersion>
</WindowsPlatform>
</Configuration>
I hope this helps.