I’m having problems with compiling under Ubuntu 14.04. I’m following this guide here:
I’ve installed the prerequisites, updated them, built 3rd party, generated project files, and when I try to compile the SlateViewer (or anything) I get this error:
lostra@lostra-X550DP:~/Downloads/unreal/unrealengine$ make SlateViewer
Engine/Build/BatchFiles/Linux/Build.sh SlateViewer Linux Development
Building SlateViewer...
Building UnrealHeaderTool...
Target is up to date.
Parsing headers for SlateViewer
Using binned.
LogModuleManager:Warning: ModuleManager: Module 'ScriptGeneratorPlugin' not found - it's StaticallyLinkedModuleInitializers function is null.
LogGenericPlatformMisc:Warning: Cannot display dialog box on this platform: Message : Plugin 'ScriptGeneratorPlugin' failed to load because module 'ScriptGeneratorPlugin' could not be found. Please ensure the plugin is properly installed, otherwise consider disabling the plugin for this project.
/home/lostra/Downloads/unreal/unrealengine/Engine/Source/Runtime/CoreUObject/Classes/Object.h(758) : Error: Superclass None_0 of class Object not found
/home/lostra/Downloads/unreal/unrealengine/Engine/Source/Runtime/SlateCore/Public/Styling/SlateWidgetStyleContainerInterface.h(8) : Error: Superclass Interface of class SlateWidgetStyleContainerInterface not found
Error: Failed to generate code for SlateViewer - error code: 2
UnrealHeaderTool failed for target 'SlateViewer' (platform: Linux, module info: /home/lostra/Downloads/unreal/unrealengine/Engine/Intermediate/Build/Linux/x86_64-unknown-linux-gnu/SlateViewer/Development/UnrealHeaderTool.manifest).
make: *** [SlateViewer] Error 2
However, I’ve checked and the ScriptGeneratorPlugin is present:
lostra@lostra-X550DP:~/Downloads/unreal/unrealengine/Engine/Plugins/Script$ ls
ScriptEditorPlugin ScriptGeneratorPlugin ScriptPlugin
lostra@lostra-X550DP:~/Downloads/unreal/unrealengine/Engine/Plugins/Script/ScriptGeneratorPlugin$ ls
Binaries Resources ScriptGeneratorPlugin.uplugin Source
Any idea to fix this?