From 643f790b00a015b4fd839741ef8904a3f387fb54 Mon Sep 17 00:00:00 2001 From: tsjensen Date: Thu, 20 Nov 2014 14:06:02 -0800 Subject: [PATCH] Updated FAQ (markdown) --- FAQ.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/FAQ.md b/FAQ.md index cbb245a..96d1382 100644 --- a/FAQ.md +++ b/FAQ.md @@ -32,6 +32,7 @@ Note that you can also set the tab stop distance (== how many spaces per tab) us It's a known bug in flex, and has no impact on boxes. You can safely ignore this warning. - `Bad address` on *boxes* execution after compiling on a 64bit system:
- This may happen when the system you are compiling on is 64bit. Boxes is only a 32bit program, so the compiler may have to be forced to 32bit by adding the `-m32` option. (Thanks to @stefanow for [supplying](https://github.com/ascii-boxes/boxes/issues/7) this information!) + This may happen when the system you are compiling on is 64bit. Boxes is only a 32bit program, so the compiler may have to be forced to 32bit by adding the `-m32` option. (Thanks to @stefanow for [supplying](https://github.com/ascii-boxes/boxes/issues/7) this information!)
+ In order to do this, use the following command line (works with current sources): -You should not have to do any of these things, so let the author know if you had to. \ No newline at end of file + make CFLAGS_ADDTL=-m32 LDFLAGS_ADDTL=-m32