Page 1 of 1

Problem compiling QEMU Screamer on Linux Manjaro

Posted: Sat Jul 24, 2021 12:59 pm
by ccepeda
Hello there. I was trying to compile QEMU screamer on Linux Manjaro but I get the following error: ERROR: GNU make (make) not found.

I used the following code

Code: Select all

git clone -b screamer https://github.com/mcayland/qemu qemu-screamer
cd qemu-screamer
./configure --target-list=ppc-softmmu --enable-sdl --enable-gtk
I get the error when I use the ./ command. What could be the cause of this error?
Thanks!

Re: Problem compiling QEMU Screamer on Linux Manjaro

Posted: Sat Jul 24, 2021 5:56 pm
by adespoton
ccepeda wrote: Sat Jul 24, 2021 12:59 pm Hello there. I was trying to compile QEMU screamer on Linux Manjaro but I get the following error: ERROR: GNU make (make) not found.

I used the following code

Code: Select all

git clone -b screamer https://github.com/mcayland/qemu qemu-screamer
cd qemu-screamer
./configure --target-list=ppc-softmmu --enable-sdl --enable-gtk
I get the error when I use the ./ command. What could be the cause of this error?
Thanks!
That would seem to indicate that you don't have GNU make installed? Have you installed make and gcc?

Re: Problem compiling QEMU Screamer on Linux Manjaro

Posted: Sat Jul 24, 2021 10:49 pm
by ccepeda
No, I hadn't. That was the issue. Thanks!