| OLD | NEW |
| 1 # In Native Client ld.so does not use File I/O functions when it loads DSO. | 1 # In Native Client ld.so does not use File I/O functions when it loads DSO. |
| 2 # Either manifest or IRT will provide mapping to filesystem. | 2 # Either manifest or IRT will provide mapping to filesystem. |
| 3 # Consider all files placed in "/lib". In the initial DSO loading /lib is | 3 # Consider all files placed in "/lib". In the initial DSO loading /lib is |
| 4 # redirected to IRT's open_resourc, later nacl_mounts (or another similar | 4 # redirected to IRT's open_resourc, later nacl_mounts (or another similar |
| 5 # library) can introduce redirects. | 5 # library) can introduce redirects. |
| 6 default-rpath = /lib | 6 default-rpath = /lib |
| 7 default-dl-dst-lib = /lib | 7 default-dl-dst-lib = /lib |
| 8 |
| 9 # Do not build ldconfig. |
| 10 use-ldconfig = no |
| OLD | NEW |