Re: [Mono-dev] Building mcs from source without mono

2009-05-08 Thread Raja R Harinath
Hi, Petit Eric writes: > 2009/5/8 Raja R Harinath : >> Joachim Ante writes: >>> I placed this in mcs/build/profiles. (I tried a couple different values for >>> BOOTSTRAP_PROFILE, but can't figure out what it should be) >>> >>> >>> # -*- makefile -*- >>> >>> BOOTSTRAP_PROFILE = basic >>> BOOTSTR

Re: [Mono-dev] Building mcs from source without mono

2009-05-08 Thread Petit Eric
This is not simple as use the mono-lite ? 2009/5/8 Raja R Harinath : > Hi, > > Joachim Ante writes: > >> I placed this in mcs/build/profiles. (I tried a couple different values for >> BOOTSTRAP_PROFILE, but can't figure out what it should be) >> >> >> # -*- makefile -*- >> >> BOOTSTRAP_PROFILE =

Re: [Mono-dev] Building mcs from source without mono

2009-05-07 Thread Raja R Harinath
Hi, Joachim Ante writes: > I placed this in mcs/build/profiles. (I tried a couple different values for > BOOTSTRAP_PROFILE, but can't figure out what it should be) > > > # -*- makefile -*- > > BOOTSTRAP_PROFILE = basic > BOOTSTRAP_MCS = gmcs > MCS = mcs Given your values for MCS and BOOTSTRAP_

Re: [Mono-dev] Building mcs from source without mono

2009-05-02 Thread Robert Jordan
Joachim Ante wrote: > Hi, > > I placed this in mcs/build/profiles. (I tried a couple different values for > BOOTSTRAP_PROFILE, but can't figure out what it should be) You need a manually configured mcs/build/config.make which is usually generated by the build of the mono tree. Take one from a pr

Re: [Mono-dev] Building mcs from source without mono

2009-05-02 Thread Joachim Ante
Hi,I placed this in mcs/build/profiles. (I tried a couple different values for BOOTSTRAP_PROFILE, but can't figure out what it should be) unity.make Description: Binary data Then i do:cd mcs/class/corlibmake PROFILE="">(This is on a completely clean 2.4 mcs svn checkout)the output i get is:make a

Re: [Mono-dev] Building mcs from source without mono

2009-05-01 Thread Miguel de Icaza
> Is there an easy way to remove the dependency to the mono folder > completely? Not easy as a general framework, but for the handful of assemblies that you guys are using, you could probably just create a profile in: mcs/build/profiles And create say a "unity" profile where you overw

[Mono-dev] Building mcs from source without mono

2009-05-01 Thread Joachim Ante
Hi, We are currently rebuilding the process of how to build mono. We are switching the build process of the mono runtime to be built with jamplus instead. This makes it easier for us to port to new platforms and maintain them. Now we don't really want to rebuild the make files to build mcs.