Unix and Linux Discussions Tagged with binary |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
1 |
13,630 |
Shell Programming and Scripting |
|
|
|
9 |
6,635 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
7,699 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
4,300 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
22,400 |
Fedora |
|
|
|
1 |
7,960 |
Shell Programming and Scripting |
|
|
|
1 |
5,435 |
Shell Programming and Scripting |
|
|
|
0 |
6,573 |
UNIX for Dummies Questions & Answers |
|
|
|
7 |
3,647 |
Programming |
|
|
|
7 |
11,759 |
UNIX for Advanced & Expert Users |
|
|
|
20 |
12,959 |
Solaris |
|
|
|
2 |
10,032 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
5,380 |
Shell Programming and Scripting |
|
|
|
1 |
2,526 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
39,374 |
Linux |
|
|
|
3 |
9,510 |
Shell Programming and Scripting |
|
|
|
4 |
17,136 |
Shell Programming and Scripting |
|
|
|
1 |
2,409 |
Solaris |
|
|
|
1 |
6,815 |
Programming |
|
|
|
8 |
10,356 |
Shell Programming and Scripting |
|
|
|
0 |
4,874 |
UNIX and Linux Applications |
|
|
|
0 |
1,482 |
Software Releases - RSS News |
|
|
|
2 |
12,569 |
Linux |
|
|
|
3 |
14,765 |
UNIX for Advanced & Expert Users |
|
|
|
0 |
1,656 |
Software Releases - RSS News |
|
|
|
2 |
2,806 |
Shell Programming and Scripting |
|
|
|
0 |
1,647 |
Software Releases - RSS News |
|
|
|
1 |
3,555 |
UNIX and Linux Applications |
|
|
|
5 |
10,330 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
16,877 |
Programming |
|
|
|
5 |
50,967 |
Programming |
|
|
|
5 |
3,846 |
Shell Programming and Scripting |
|
|
|
6 |
11,164 |
Cybersecurity |
|
|
|
9 |
8,465 |
Programming |
|
|
|
1 |
2,385 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
4,060 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
2,290 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
15,296 |
Programming |
|
|
|
3 |
15,512 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
3,559 |
Programming |
INSTALL_NAME_TOOL(1) General Commands Manual INSTALL_NAME_TOOL(1)
NAME
install_name_tool - change dynamic shared library install names
SYNOPSIS
install_name_tool [-change old new ] ... [-rpath old new ] ... [-add_rpath new ] ... [-delete_rpath new ] ... [-id name] file
DESCRIPTION
Install_name_tool changes the dynamic shared library install names and or adds, changes or deletes the rpaths recorded in a Mach-O binary.
For this tool to work when the install names or rpaths are larger the binary should be built with the ld(1) -headerpad_max_install_names
option.
-change old new
Changes the dependent shared library install name old to new in the specified Mach-O binary. More than one of these options can be
specified. If the Mach-O binary does not contain the old install name in a specified -change option the option is ignored.
-id name
Changes the shared library identification name of a dynamic shared library to name. If the Mach-O binary is not a dynamic shared
library and the -id option is specified it is ignored.
-rpath old new
Changes the rpath path name old to new in the specified Mach-O binary. More than one of these options can be specified. If the
Mach-O binary does not contain the old rpath path name in a specified -rpath it is an error.
-add_rpath new
Adds the rpath path name new in the specified Mach-O binary. More than one of these options can be specified. If the Mach-O binary
already contains the new rpath path name specified in -add_rpath it is an error.
-delete_rpath old
deletes the rpath path name old in the specified Mach-O binary. More than one of these options can be specified. If the Mach-O
binary does not contains the old rpath path name specified in -delete_rpath it is an error.
SEE ALSO
ld(1)
Apple, Inc. March 4, 2009 INSTALL_NAME_TOOL(1)