Hi Dave: My suggestion is going to address using YDL to help you get more specific whether you actually have a file (in this case, make.footer). It is possible I'm being excessively literal, but the word "apparently" expresses uncertainty. Hopefully the following will help achieve a definite determination whether make.footer exists or not.
Do this: #find / -name "make.footer" -print The above will print to stdout. If you were looking for a series of files which all started with make, you could also do: #find / -name "make*" -print > findmakes.txt The * is a wildcard which will include any string of characters after e. The > redirects output from stdout to a text file which I happened to name findmakes.txt. This is useful when the list is long and you really want to not worry about the results of your search scrolling off the screen. The above would work with nearly any Linux or Unix. Good luck... On Fri, 07 Sep 2007 16:06:27 -0700 (PDT) David <[EMAIL PROTECTED]> wrote: > I read the how to install the Cell SDK 2.1 at > > http://www.ydl.net/downloads/enhanced/betas/Cell_SDK_2.1/INSTALL.txt > > Would it be possible for someone to post the output of > what you get when you run the test examples? > i.e. the output of the following at the end of the > INSTALL.txt write-up: > > # cd app_data/; ./app_data; cd .. > # cd dma/; ./ppe-dma-test; cd .. > # cd elfspe/; ./runspe ./spe-helloworld; cd .. > # cd event/; ./ppe-start-stop spe-start-stop; cd .. > # cd ft/; ./ft ; cd .. > # cd start-stop/; ./ppe-start-stop spe-start-stop; cd > .. > > I don't apparently have a file such as > > /opt/ibm/cell-sdk/prototype/make.footer > > on my system that I need to compile codes I downloaded > from > MIT to run the Blue Steel ray-tracer for the PS3 > created in > YDL at http://cag.csail.mit.edu/ps3/ > > but they used older developer tools that are no longer > available, hence I had to install SDK 2.1. But I > don't think I have > it installed correctly. > > Also, can someone explain how I can tell if YDL is > using FC5 or FC6? The IBM Cell SDK web pages speak in > terms of FC#s. I'm new to deep Linux issues. > > Thanks, > > Dave Calvo > > > > > ____________________________________________________________________________________ > Shape Yahoo! in your own image. Join our Network Research Panel > today! http://surveylink.yahoo.com/gmrs/yahoo_panel_invite.asp?a=7 > > > _______________________________________________ > yellowdog-newbie mailing list > [email protected] > http://lists.terrasoftsolutions.com/mailman/listinfo/yellowdog-newbie ======== "If I were not a physicist, I would probably be a musician. I often think in music. I live my daydreams in music. I see my life in terms of music. ... I get most joy in life out of music." "What Life Means to Einstein: An Interview by George Sylvester Viereck," for the October 26, 1929 issue of The Saturday Evening Post.
signature.asc
Description: PGP signature
_______________________________________________ yellowdog-newbie mailing list [email protected] http://lists.terrasoftsolutions.com/mailman/listinfo/yellowdog-newbie
