Hello everyone,
I compiled the UE4 by following the steps at A new, community-hosted Unreal Engine Wiki - Announcements - Unreal Engine Forums but after I execute make the file UE4Editor is not created.
Could someone help me out with this?
My OS is Debian Stable
Pin0niP
2
I was able to successfully compile the UE4 in Debian Stable by doing the following steps:
$ git clone https://github.com/EpicGames/UnrealEngine.git
$ cd UnrealEngine
$ ./Setup.sh
$ ./GenerateProjectFiles.sh
$ make -j8
At this point, I re-executed the following
$ ./Setup.sh
$ ./GenerateProjectFiles.sh
$ make -j8
I hope this will help someone running Debian 9 Stretch (Stable)
@Pin0niP dont know why your using j8 after make in debian. Try deleting what partial install u have. Dont use anything after make
@thadkinsjr I did make **-j8 **to use all my cores and threads to speed up the entire process.