summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2014-10-11 20:29:51 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2014-10-11 20:33:37 +0300
commit6c2ab5c315ef375582c2e5fdf52638ebbef38065 (patch)
tree411ea30fed1de006b11970255054dc74f8005f88
parent9b6617ea8b2324993e709058dd1a74433a9001a6 (diff)
unix: Add comment about needed dependencies for MICROPY_FORCE_32BIT.
-rw-r--r--unix/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/unix/Makefile b/unix/Makefile
index a6b5026e2..8ee231982 100644
--- a/unix/Makefile
+++ b/unix/Makefile
@@ -44,6 +44,8 @@ endif
LDFLAGS = $(LDFLAGS_MOD) $(LDFLAGS_ARCH) -lm $(LDFLAGS_EXTRA)
ifeq ($(MICROPY_FORCE_32BIT),1)
+# Note: you may need to install i386 versions of dependency packages,
+# starting with linux-libc-dev:i386
CFLAGS += -m32
LDFLAGS += -m32
ifeq ($(MICROPY_PY_FFI),1)