aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2019-04-11 13:48:30 +0200
committerToni Uhlig <matzeton@googlemail.com>2019-04-11 13:48:30 +0200
commita7de36e0225748e7d97ce32905c9a4efc19d0b19 (patch)
tree97b2d5d685cb85388ea0545af5f9cc760a38daaa
parent620e9785b8b3462aed1421212e9e65b4169ae4bf (diff)
force funccrypt as 32 bit executable
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 515c41d..ba7fbf9 100644
--- a/Makefile
+++ b/Makefile
@@ -70,7 +70,7 @@ exec_crypter_x64: exec_payload_x64_bin.o exec_crypter.c
$(CC) $(ECFLAGS) -m64 -D_NOTASKID=1 -o $@ exec_payload_x64_bin.o exec_crypter_x64.o
funccrypt: funccrypt.c
- $(CC) $(ECFLAGS) -o $@ $<
+ $(CC) $(ECFLAGS) -m32 -o $@ $<
funccrypt_x64: funccrypt.c
$(CC) $(ECFLAGS) -m64 -o $@ $<