1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-23 03:02:53 +01:00

Fix SPRX building on AppImage builds

This commit is contained in:
Nekotekina 2019-08-27 17:25:49 +03:00
parent b6b7d7b48c
commit 9672ad53cd

View File

@ -530,6 +530,12 @@ spu_runtime::spu_runtime()
// Clear LLVM output
m_cache_path = Emu.PPUCache();
if (m_cache_path.empty())
{
return;
}
fs::create_dir(m_cache_path + "llvm/");
fs::remove_all(m_cache_path + "llvm/", false);