[Build 32bit on 64 bit Linux using an automake configure script? ](https://stackoverflow.com/a/17748092) ``` sudo apt-get install gcc-multilib g++-multilib ./configure --host=i686-linux-gnu "CFLAGS=-m32" "CXXFLAGS=-m32" "LDFLAGS=-m32" ``` [error: 'INT32_MAX' was not declared in this scope](https://stackoverflow.com/a/3233069) Add `#define __STDC_LIMIT_MACROS` before first `#include` in `dumpfloppy.cpp`
Build 32bit on 64 bit Linux using an automake configure script?
error: 'INT32_MAX' was not declared in this scope
Add
#define __STDC_LIMIT_MACROSbefore first#includeindumpfloppy.cpp