[Mono-list] profile net_2_0 in 1.1.2
John Lenz
lenz@cs.wisc.edu
Mon, 15 Nov 2004 20:03:22 +0000
Hey, I am trying to compile mcs-1.1.2 with
./configure --profile=net_2_0
make
and I get
../jay/jay: No such file or directory
after adding jay to net_2_0_SUBDIRS in the Makefile, it compiles but then
gets an error later on,
cannot open assembly ../../mcs/mcs.exe
when compiling gmcs.
So then I added mcs to net_2_0_SUBDIRS in the Makefile, but I get a bunch
of warnings,
The compiler option -2 is obsolete. Please use /langversion instead
and then I get the error
cannot open assembly ../../monoresgen/monoresgen.exe
make[4]: *** [Microsoft.VisualBasic/VBUtils.resources] Error 2
So I add monoresgen to list of subdirs, and finally it compiles.
Is this the correct way to compile net_2_0, or am I supposed to just
compile it with ./configure && make before ./configure --profile=net_2_0?
John