Fixing build issues with llvm-20 and latest ps5 sdk (#53)

* Fixes some build issues when using latest ps5 sdk and llvm-20

* Changed Makefile to work with ps5-payload-sdk/bin/clang++
This commit is contained in:
Adam Furtenbach
2025-09-11 16:56:32 +02:00
committed by GitHub
parent 03d016fd31
commit f446ee1ee5
6 changed files with 52 additions and 8 deletions

View File

@@ -119,7 +119,7 @@ struct NonStupidIovec {
: iov_base(str), iov_length(length) {}
};
constexpr NonStupidIovec operator"" _iov(const char *str, unsigned long len) {
constexpr NonStupidIovec operator""_iov(const char *str, unsigned long len) {
return {str, len + 1};
}
static bool remount(const char *dev, const char *path, int mnt_flag) {