Closed adamenger closed 4 years ago
I had issues compiling this on linux. Had to add -std=gnu99 to the Makefile. Like so:
-std=gnu99
Makefile
[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!
I had issues compiling this on linux. Had to add
-std=gnu99
to theMakefile
. Like so:Hoping this helps anybody else googling around!