Updated FAQ (markdown)

tsjensen 2014-11-20 14:06:02 -08:00
parent 08b9d6e0cb
commit 643f790b00

5
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:<br/>
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!)<br/>
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.
make CFLAGS_ADDTL=-m32 LDFLAGS_ADDTL=-m32