Roman Scherer schreef op za 26-03-2022 om 15:09 [+0100]: > +               ;; Compile the shared object file. > +               (apply invoke "make" "CC=gcc" make-flags) This is broken when cross-compiling. Use (string-append "CC=" ,(cc- for-target)) instead of "CC=gcc". Greetings, Maxime.