Ludovic Courtès schreef op do 16-09-2021 om 17:20 [+0200]: > + ,@(let ((system (or (%current-target-system) (%current-system)))) > + (if (or (string-prefix? "i686-" system) > + (string-prefix? "i586-" system)) (Unrelated to the build failure) you could use target-x86-32? here to make the code a little simpler: ,@(if (target-x86-32?) '((add-after ....)) '() Greetings, Maxime.