https://bugs.winehq.org/show_bug.cgi?id=50330
--- Comment #11 from Anastasius Focht focht@gmx.net --- Hello JB,
--- snip --- wine: Call from 7B010BF6 to unimplemented function msvcp140_1.dll._Aligned_get_default_resource, aborting --- snip ---
It basically means that 'winetricks -q vcrun2019' did not put native overrides for this dll into registry which is the result of either:
* winetricks script being to old * bug in winetricks script
https://github.com/Winetricks/winetricks/blob/master/src/winetricks#L12837
Here is an explanation of the additional dlls:
https://stackoverflow.com/questions/62000672/what-are-the-msvcp140-1-dll-and...
--- quote --- For binary compatibility, more than one DLL file may be specified by a single import library. Version updates may introduce dot libraries, separate DLLs that introduce new library functionality.
For example, Visual Studio 2017 version 15.6 introduced msvcp140_1.dll to support additional standard library functionality without breaking the ABI supported by msvcp140.dll.
The msvcprt.lib import library included in the toolset for Visual Studio 2017 version 15.6 supports both DLLs, and the vcredist for this version installs both DLLs. Once shipped, a dot library has a fixed ABI, and will never have a dependency on a later dot library. --- quote ---
You could try to set the override manually.
'winecfg' -> 'Libraries' -> add 'msvcp140_1' to the list and press 'Apply' and/ or 'OK and then exit.
Regards