mcp613
April 7, 2022, 11:00pm
#1
Hello,
I’m trying to build ue5 from source (on the main branch).
I ran Setup.sh, and that ran successfully.
I then ran GenerateProjectFiles.sh and gave an error:
Setting up bundled DotNet SDK
No usable version of libssl was found
I am using fedora 36
Thank you
mcp613
April 7, 2022, 11:46pm
#2
Turns out I needed to enable the copr from https://copr.fedorainfracloud.org/coprs/dioni21/compat-openssl10/ and install compat-openssl10 with dnf. Hope this helps anyone else on fedora.
I had the same issue on Fedora 36. There’s no version of 1.0 available on the distro any more. They’ve stopped maintaining it in favour of 1.1. This copr worked.
Here’s hoping to a Linux Flatpak!
Anyone how to fix this on Ubuntu 22.04?
2 Likes
mmxgn
May 16, 2022, 7:20am
#5
Anyone how to fix this on Ubuntu 22.04?
I had the same issue, I managed to fix it by adding the RVM PPA by Rael Gugelmin Cunha and installing libssl1.0-dev
:
sudo add-apt-repository ppa:rael-gc/rvm
sudo apt-get update
sudo apt install libssl1.0-dev
Then ./GenerateProjectFiles.sh
ran successfully.
1 Like
Brilliant! Thank you, I ran into this issue too and this solution worked.