joerg van den hoff wrote:
[]
thanks a lot. alas: I did as advised (uninstall-devtools.pl + reinstallatinon of Xcode (I used "Customize" and included CHUD Tools in addition to standard settings). result: no c++filt in /usr/bin. I installed a couple of times BSDSDK.pkg: same result.

It is the BSD.pkg, actually (optional) part of the system installation, not Xcode. I see it also in the package 2005-06XcodeExtras.pkg, but I don't know where this comes from.

question: is there a command line argument to unpack the package, locate the file and simply copy it to where it belongs?

Yes. If you cd into the *.pkg/Contents directory, you see first Archive.bom which is the file list. You can check with

 lsbom -p f Archive.bom |grep c++filt

whether you are looking at the right package. Then there is Archive.pax.gz which contains the files. The commands

 mkdir /tmp/ROOT
 zcat Archive.pax.gz | (cd /tmp/ROOT; pax -r)

unpack the package into /tmp/ROOT. You will find your file in /tmp/ROOT/usr/bin.

--
Martin


-------------------------------------------------------
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
_______________________________________________
Fink-beginners mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/fink-beginners

Reply via email to