<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/xhtml; charset=utf-8">
</head>
<body>
<div style="font-family:sans-serif"><div style="white-space:normal">
<p dir="auto">On 3 Jun 2020, at 21:11, Greg Dunn wrote:</p>

</div>
<div style="white-space:normal"><blockquote style="border-left:2px solid #777; color:#777; margin:0 0 5px; padding-left:5px"><p dir="auto">Because I can't keep my hands off  utilities and am on a constant quest to understand development processes, I attempted to clone the latest git repository and build TextMate.  It seems that everything goes well until I reach the part where I build the actual executable, and get the following errors:<br>
[…]<br>
xcrun: error: unable to find utility "ibtool", not a developer tool or in PATH<br>
[…]<br>
ibtool and actool exist in /usr/bin and also a link to /usr/local/bin, both of which are in my shell path.  I enter 'which ibtool' from the shell and it can find the tool.  Is there another path needed for the build which I don't have set?  Generally Homebrew builds compile and run OK on my system...</p>
</blockquote></div>
<div style="white-space:normal">

<p dir="auto">The build process runs everything via the <code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0 0.4em" bgcolor="#F7F7F7">xcrun</code> command.</p>

<p dir="auto">You can run <code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0 0.4em" bgcolor="#F7F7F7">xcrun -f ibtool</code> to find ibtool via <code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0 0.4em" bgcolor="#F7F7F7">xcrun</code>, but it will likely fail, though it may tell you what is wrong.</p>

<p dir="auto">Perhaps the “selected” Xcode version of yours exist no more, try run: <code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0 0.4em" bgcolor="#F7F7F7">xcode-select -p</code>, that prints path to where the system thinks it is located.</p>

<p dir="auto">You may be able to fix that with <code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0 0.4em" bgcolor="#F7F7F7">xcode-select -s <path></code>.</p>

<p dir="auto">More information in man page for the above mentioned tools.</p>
</div>
</div>
</body>
</html>