On Dec 15, 2025, at 20:40, lars sonchocky-helldorf wrote: > > So it still uses /Developer/usr/bin/strip for which I don’t know how to fix > it (IIRC it reconfigured for the build but somehow doesn’t use anything > outside of /Developer.
Right. That's why Ken's suggestion was to temporarily replace Apple's strip binary, like this: sudo mv /Developer/usr/bin/strip /Developer/usr/bin/strip.apple sudo cp /opt/local/bin/strip /Developer/usr/bin Then build osxfuse. Then later put back Apple's copy: sudo mv /Developer/usr/bin/strip.apple /Developer/usr/bin/strip Clearly we can't program a port to go changing system files like that so the ticket remains open and unfixed. If someone can figure out a way to tell Xcode to use our strip program instead, then we could make progress on fixing the ticket properly.
