IAIK / ZombieLoad

Proof-of-concept for the ZombieLoad attack
812 stars 122 forks source link

compiling issues #5

Closed adamenger closed 4 years ago

adamenger commented 4 years ago

I had issues compiling this on linux. Had to add -std=gnu99 to the Makefile. Like so:

[aenger@aenger]~/ZombieLoad/attacker/variant2_linux_windows% cat Makefile
all: main.c
    gcc main.c  -std=gnu99 -Os -o leak

clean:
    @rm -rf leak

Hoping this helps anybody else googling around!