-
Notifications
You must be signed in to change notification settings - Fork 269
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can`t compile on RPI - Raspbian. #30
Comments
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!
|
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'
: recipe for target 'meltdown.o' failed
make: *** [meltdown.o] Error 1
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.
: recipe for target 'meltdown.o' failed
make: *** [meltdown.o] Error 1
Best Regards
TaKeN
The text was updated successfully, but these errors were encountered: