| 15 | 15 | By default, the configure script expects your default build platform's compiler to be able to produce executables that run on said platform. This is necessary so that the build process can compile and run the custom embedder tool to add the driver files to the library. If however your default compiler can not produce executables that run on your build platform, this process will fail. This can occur for instance, if you are using a multilib MinGW-w64 on a Windows 32 platform, if the default for gcc is to produce 64 bit executables. If this is the case, you must define a {{{CC_FOR_BUILD}}} environment variable, with the relevant options to produce executables that work on your platform. For instance, in the scenario above, you would issue the following, to ensure that the embedder executable can run on 32 bit, before running configure:[[BR]]{{{ export CC_FOR_BUILD="x86_64-w64-mingw32-gcc -m32}}} |