Skip to content
Snippets Groups Projects
Commit 4bc47bec authored by Guenter Knauf's avatar Guenter Knauf
Browse files

build: in Makefile.m32 add -m32 flag for 32bit.

parent e126ec4f
No related branches found
No related tags found
No related merge requests found
......@@ -64,6 +64,8 @@ CFLAGS = -g -O2 -Wall
CFLAGS += -fno-strict-aliasing
ifeq ($(ARCH),w64)
CFLAGS += -D_AMD64_
else
CFLAGS += -m32
endif
# comment LDFLAGS below to keep debug info
LDFLAGS = -s
......
......@@ -76,6 +76,8 @@ CFLAGS = -g -O2 -Wall
CFLAGS += -fno-strict-aliasing
ifeq ($(ARCH),w64)
CFLAGS += -D_AMD64_
else
CFLAGS += -m32
endif
# comment LDFLAGS below to keep debug info
LDFLAGS = -s
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment