NameDateSize

..12-Oct-201517

Makefile.amH A D29-Apr-20053.3 KiB

Makefile.inH A D29-Apr-200513.3 KiB

rpath-1H A D29-Apr-2005993

rpath-1aH A D29-Apr-2005160

rpath-1bH A D29-Apr-2005144

rpath-2_aH A D29-Apr-20051.5 KiB

rpath-2_bH A D29-Apr-20051.9 KiB

rpath-2aaaH A D29-Apr-2005276

rpath-2aabH A D29-Apr-2005260

rpath-2aacH A D29-Apr-2005260

rpath-2aadH A D29-Apr-2005244

rpath-2abaH A D29-Apr-2005326

rpath-2abbH A D29-Apr-2005310

rpath-2abcH A D29-Apr-2005310

rpath-2abdH A D29-Apr-2005294

rpath-2baaH A D29-Apr-2005374

rpath-2babH A D29-Apr-2005358

rpath-2bacH A D29-Apr-2005358

rpath-2badH A D29-Apr-2005342

rpath-2bbaH A D29-Apr-2005424

rpath-2bbbH A D29-Apr-2005408

rpath-2bbcH A D29-Apr-2005408

rpath-2bbdH A D29-Apr-2005392

rpath-3_aH A D29-Apr-20051.9 KiB

rpath-3_bH A D29-Apr-20052.5 KiB

rpath-3aaaH A D29-Apr-2005358

rpath-3aabH A D29-Apr-2005342

rpath-3aacH A D29-Apr-2005342

rpath-3aadH A D29-Apr-2005326

rpath-3aaeH A D29-Apr-2005342

rpath-3aafH A D29-Apr-2005326

rpath-3aagH A D29-Apr-2005326

rpath-3aahH A D29-Apr-2005310

rpath-3abaH A D29-Apr-2005408

rpath-3abbH A D29-Apr-2005392

rpath-3abcH A D29-Apr-2005392

rpath-3abdH A D29-Apr-2005376

rpath-3abeH A D29-Apr-2005392

rpath-3abfH A D29-Apr-2005376

rpath-3abgH A D29-Apr-2005376

rpath-3abhH A D29-Apr-2005360

rpath-3baaH A D29-Apr-2005457

rpath-3babH A D29-Apr-2005441

rpath-3bacH A D29-Apr-2005441

rpath-3badH A D29-Apr-2005425

rpath-3baeH A D29-Apr-2005441

rpath-3bafH A D29-Apr-2005425

rpath-3bagH A D29-Apr-2005425

rpath-3bahH A D29-Apr-2005409

rpath-3bbaH A D29-Apr-2005507

rpath-3bbbH A D29-Apr-2005491

rpath-3bbcH A D29-Apr-2005491

rpath-3bbdH A D29-Apr-2005475

rpath-3bbeH A D29-Apr-2005491

rpath-3bbfH A D29-Apr-2005475

rpath-3bbgH A D29-Apr-2005475

rpath-3bbhH A D29-Apr-2005459

rpath.READMEH A D29-Apr-20052.5 KiB

rpathcfg.shH A D29-Apr-20056.4 KiB

rpathlx/H12-Oct-20159

rpathly/H12-Oct-20159

rpathlyx/H12-Oct-20159

rpathlz/H12-Oct-20159

rpathlzyx/H12-Oct-20159

rpathx/H12-Oct-20159

rpathy/H12-Oct-20159

rpathz/H12-Oct-20159

rpath.README

1Tests for config.rpath and lib-link.m4.
2
3rpath-1 w
4        |
5        +---- a = static, b = shared
6
7rpath-2 u v w
8        | | |
9        | | +---- a = static/static, b = static/shared,
10        | |       c = shared/static, d = shared/shared.
11        | |
12        | +------ a = all libraries and the program have the same prefix,
13        |         b = the libraries are in different directories.
14        |
15        +-------- a = all shared libraries use the libtool *.la files for
16                  resolving dependencies, b = dependencies are given as
17                  AC_LIB_LINKFLAGS argument instead.
18
19rpath-3 u v w
20        | | |
21        | | +---- a = static/static/static, b = static/static/shared,
22        | |       c = static/shared/static, d = static/shared/shared,
23        | |       e = shared/static/static, f = shared/static/shared,
24        | |       g = shared/shared/static, h = shared/shared/shared.
25        | |
26        | +------ a = all libraries and the program have the same prefix,
27        |         b = the libraries are in different directories.
28        |
29        +-------- a = all shared libraries use the libtool *.la files for
30                  resolving dependencies, b = dependencies are given as
31                  AC_LIB_LINKFLAGS argument instead.
32
33The rpath-2* tests are sensitive to
34  - incomplete shared library support in the system,
35  - bugs in libtool that creates the shared libraries,
36  - bugs in lib-link.m4.
37
38The rpath-3* tests are sensitive to
39  - incomplete shared library support in the system,
40  - bugs in libtool that creates the shared libraries.
41
42Known failures:
43
44* On all platforms supporting shared libraries,
45    rpath-3aae rpath-3aag
46    rpath-3abe rpath-3abg
47  fail. This is a libtool 1.4.2 bug: When a shared library depends on a
48  static library indirectly through two different dependency paths,
49  libtool attempts to link together invalid sets of object files.
50
51* OSF/1 4.0: the tests
52    rpath-2bbd
53    rpath-3bbd rpath-3bbf rpath-3bbg rpath-3bbh
54  fail, because -rpath options are not cumulative:
55  The last -rpath option overrides all previous ones. One would need to
56  pass all directories, separated by colons, in a single -rpath option.
57
58* Solaris: the tests
59    rpath-3bae rpath-3bbe
60    rpath-3aaf rpath-3abf
61    rpath-3baf rpath-3bbf
62  fail, because code from static libraries not compiled with -fPIC cannot
63  be integrated into shared libraries: linker error "Text relocation remains".
64
65* Cygwin: The tests
66    rpath-2aac rpath-2abc
67    rpath-3aac rpath-3aaf
68    rpath-3abc rpath-3abf
69  fail.
70
71