[Mono-dev] How can I build a minimal mono runtime system?

CodeSlinger dkolb at emdeon.com
Mon Dec 20 11:27:20 EST 2010


Thanks for the reply Robert. I was not able to make install mono until I
added "--with-libgdiplus=no" to the configure options since I could not make
libgdiplus since I did not have the prereqs and did not need system.drawing.
The reason we tried that option set to no when configuring the mono make was
the below code snippet in the configure.in file. I guess I could have said
"installed" as well. There does seem to be a lot of options for configure
and make for mono. Are these documented anywhere? Esp. what does
"--enable-small-config" do? Thanks, Dave

AC_ARG_WITH([libgdiplus], 
	[  --with-libgdiplus=installed|sibling|<path>	Override the libgdiplus used
for System.Drawing tests (defaults to installed)], 
	[], [with_libgdiplus=installed])

case $with_libgdiplus in
no|installed) libgdiplus_loc= ;;
yes|sibling) libgdiplus_loc=`cd ../libgdiplus && pwd`/src/libgdiplus.la ;;
/*) libgdiplus_loc=$with_libgdiplus ;;
*) libgdiplus_loc=`pwd`/$with_libgdiplus ;;
-- 
View this message in context: http://mono.1490590.n4.nabble.com/How-can-I-build-a-minimal-mono-runtime-system-tp3093919p3095780.html
Sent from the Mono - Dev mailing list archive at Nabble.com.


More information about the Mono-devel-list mailing list