RSB Fails During RPM Build on Fedora 44

On some distros like Fedora /tmp is a on-RAM thing. Which leads into errors like these

lto-wrapper: fatal error: write: Disk quota exceeded
compilation terminated.
/usr/bin/ld.bfd: error: lto-wrapper failed
collect2: error: ld returned 1 exit status
make[2]: *** [../../gcc-15.2.0/gcc/cp/Make-lang.in:145: cc1plus] Error 1

Technically yes this is something the host admin should manage.
Should we include this in the documentation in future warning them about the disk quota thing, so that they can themselves set desired location for the TMP stuff?
I can also make it a configuration variable for the upcoming rtems-pkg utility which would allow something like ./rtems-pkg --configure TMP=/lala/land.

Btw this doesn’t happen in Debian-based distros. On Debian-based distros /tmp points to disk storage instead of RAM.

Maybe we take the simpler path of documentation and warning users and if that is not working out with users we add something to manage it?

I guess then moving TMP and related vars to rtems-pkg configuration would be better.
It would use host environment’s TMP by default and a custom one if later set by the user.

I am saying we leave /tmp to the users to sort out. We document for rpmbuild /tmp is used and you need a lot of space.

Oh okay, that would work too, I guess. So, I should not include it in the upcoming rtems-pkg either, and it would be managed purely by the user? Did I understand that correctly?