I'm running OS 10.7.4 and cannot find install_name_tool. I have Xcode 4.3.3 installed through the App Store. Does anyone know where I can find/get install_name_tool?
Asked
Active
Viewed 5,295 times
2 Answers
7
To be more precise, install the "Command Line Tools for Xcode" package from
https://developer.apple.com/downloads/index.action
in addition to your Xcode tools.
Which will make the tool available easily via the command line.
You can also install the command line tools via Xcode preferences in the "Downloads" pane:
+1 to Kevin for being faster than me, too. :-)

Michael Dautermann
- 88,797
- 17
- 166
- 215
4
/Applications/Xcode.app/Contents/Developer/usr/bin/install_name_tool

Kevin Grant
- 5,363
- 1
- 21
- 24
-
perfect, thanks. i guess ill put that directory in my PATH variable – David Carpenter Jul 22 '12 at 06:26
-
Also look at `xcode-select`, it may allow you to avoid fixing the `$PATH` all the time. – Kevin Grant Jul 22 '12 at 07:17