Tom wrote: >Leslie Newell <les.new...@...> writes: > > > >>Actually it's pretty simple. There are a lot of instructions on that >>page because there are quite a few ways of installing/building emc. >>In a nutshell: >>Start a terminal window and enter the following: >>cd Documents >>mkdir emc >>cd emc >>sudo apt-get install cvs >>export CVS_RSH=ssh >>cvs -z5 -d:ext:a...@...:/cvs co -demc2-trunk emc2 >>cd emc/src >>./configure --enable-run-in-place >>make >>sudo make setuid >>cd .. >>. scripts/emc-environment >>(note the space after the dot - it's important) >>emc >> >> >> > >Hi Les, > >Well, I did what you said here. I got as far as "./configure >--enable-run-in-place" and I got some errors. I copied and pasted them below. >Would you have a look and tell me what I did wrong? > > Just before or after installing cvs, you should also do the following: sudo apt-get install build-essential sudo apt-get build-dep emc2
The first line installs compilers and related tools (the essential things needed to build software, hence "build-essential). It looks like at least part of this was done, since you have a compiler installed. Don't worry, if you tell apt to install things you already have, it won't do it again, so it's safe to tell it to install everything you need. The second line installs the other things needed to build EMC2 (the build dependencies for emc2, hence "build-dep"). It's likely that Les had these things installed already, so he didn't need to do that again (or he just forgot those steps :) ) - Steve ------------------------------------------------------------------------------ Create and Deploy Rich Internet Apps outside the browser with Adobe(R)AIR(TM) software. With Adobe AIR, Ajax developers can use existing skills and code to build responsive, highly engaging applications that combine the power of local resources and data with the reach of the web. Download the Adobe AIR SDK and Ajax docs to start building applications today-http://p.sf.net/sfu/adobe-com _______________________________________________ Emc-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/emc-users
