From: Robotics P. u. h. l. <rob...@li...> - 2007-09-30 13:23:14
|
Hi John, I'm away from my Linux machine right now, so I can't give you a more detailed instruction. But based on the error you gave in your previous email: Package roombaDev was not found in the pkg-config search path. Perhaps you should add the directory containing `roombaDev.pc' to the PKG_CONFIG_PATH environment variable No package 'roombaDev' found The problem is that roombaDev.pc is not within the search path of PKG_CONFIG_PATH. Try: 1. Find where your library and header files are installed (the path can be found by opening the SConstruct script). 2. Search that directory, and find where roombaDev.pc is. Record the exact path to the directory containing the file. This is usually called pkgconfig. 3. Open up your shell's startup script - this is .bashrc or .profile or something similar to it, depending on your system. 4. At the end of the file, insert: export PKG_CONFIG_PATH=/Volumes/Files/Users/jiuguangw/Programs/player/ lib/pkgconfig:$PKG_CONFIG_PATH Replace my directory above with the string you obtained from step #2. Make sure you didn't accidently delete something from the script. Close all terminals and open up a new one. Try whatever it is you were doing before, and see if the error reappears. To check if you followed these instructions correctly, you can do: echo $PKG_CONFIG_PATH and see if that directory is indeed listed. Hope this helps, Jiuguang On Sep 29, 2007, at 10:32 PM, Robotics Primer users help list wrote: > Is there any one there? > are there any instructions on using/setting up this thing? > If anyone else is trying this, this is what I have found out. > 1) First down load the workbook, they like to hide it on the site > but with a little diligence you can find it. > 2) next you have to install a whole lot of software Imlib, gsl, > fltk, ftgl, avr, avrdude , ckermit, etc. > 3) then you have to run "scons install" in directories create and > player. > 3.5) you may have to be super user to do 3 > 4) at this time you will probably see messages cant find abc that's > because the abc software needs to be installed > 5) continue doing 4 and 5 until the scons work, or as in my case > they either work or say you need "roombaDev.pc" > 6) Join me in demanding some info about roombaDev.pc > > If I am doing anything dumb please enlighten me > > John Cummins > > Need a vacation? Get great deals to amazing places on Yahoo! Travel. > ---------------------------------------------------------------------- > --- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Roboticsprimer-users mailing list > Rob...@li... > https://lists.sourceforge.net/lists/listinfo/roboticsprimer-users |