Can`t compile on RPI - Raspbian.
Looks like working only on x86 because can`t compile on my RPI.
taken@raspberrypi:~/meltdown-exploit-master $ make
cc -O2 -msse2 -c -o meltdown.o meltdown.c
cc: error: unrecognized command line option '-msse2'
taken@raspberrypi:~/meltdown-exploit-master $ make CFLAGS=-DHAVE_RDTSCP=0 clean all
rm -f meltdown.o meltdown
cc -DHAVE_RDTSCP=0 -c -o meltdown.o meltdown.c
meltdown.c:11:23: fatal error: x86intrin.h: No such file or directory
#include <x86intrin.h>
^
compilation terminated.
Best Regards TaKeN
raspberry is not affected !
is it? i've read that arm is also affected
but yeah the code is trying to include an x86 library that doesnt exist on the raspberry pi...
@paboldin maybe close this or find a way to test on arm cpus ?
here you go - official statement:
https://www.raspberrypi.org/magpi/raspberry-pi-spectre-meltdown/
I have RPi3 at my disposal and will test it as soon as I get there.
@luckyrings thanks! While RPi3 is not vulnerable it can be used to test code that is going to be running on other ARM64s.
On Sun, Jan 14, 2018 at 11:03:39AM -0800, luckyrings wrote:
here you go - official statement:
https://www.raspberrypi.org/magpi/raspberry-pi-spectre-meltdown/
oh i didnt see that ! thank you!