Recently I compiled mono from source in order to use it with asp.net vnext
I followed the instructions at Compiling Mono on OS X
Built using a git source code checkout.
One of the steps includes the following bash command:
CC='cc -m32' ./autogen.sh --prefix=$PREFIX --disable-nls --build=i386-apple-darwin11.2.0
Please explain the --build
option when compiling mono on os x, I am trying to understand what different values I can pass to it and what they do. I could not find any mention of this option in the readme on github. So far I've only been able to deduce that omitting the option is required to compile mono in 64bit mode.