aboutsummaryrefslogtreecommitdiff
path: root/build2/cxx/link.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-03-14 11:04:02 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-03-14 11:04:02 +0200
commit10dfd69f4a714f8df2ea98e8cd2ff9359a63016a (patch)
treee087381a146420ed8ee5875cae53e2d8a88df1a2 /build2/cxx/link.cxx
parentf5b80b7128461f209b901d1ae286970b763cd70e (diff)
Don't pass -rpath on update for install
Diffstat (limited to 'build2/cxx/link.cxx')
-rw-r--r--build2/cxx/link.cxx41
1 files changed, 35 insertions, 6 deletions
diff --git a/build2/cxx/link.cxx b/build2/cxx/link.cxx
index fb93cbb..0002797 100644
--- a/build2/cxx/link.cxx
+++ b/build2/cxx/link.cxx
@@ -740,6 +740,20 @@ namespace build2
}
}
+ static void
+ append_rpath_link (strings& args, libso& t)
+ {
+ for (target* pt: t.prerequisite_targets)
+ {
+ if (libso* ls = pt->is_a<libso> ())
+ {
+ args.push_back ("-Wl,-rpath-link," +
+ ls->path ().directory ().string ());
+ append_rpath_link (args, *ls);
+ }
+ }
+ }
+
target_state link::
perform_update (action a, target& xt)
{
@@ -840,6 +854,10 @@ namespace build2
// With Mac OS 10.5 (Leopard) Apple finally caved in and gave us
// a way to emulate vanilla -rpath.
//
+ // It may seem natural to do something different on update for
+ // install. However, if we don't make it @rpath, then the user
+ // won't be able to use config.bin.rpath for installed libraries.
+ //
soname1 = "-install_name";
soname2 = "@rpath/" + leaf;
}
@@ -860,16 +878,27 @@ namespace build2
for (const string& p: as<strings> (*l))
sargs.push_back ("-Wl,-rpath," + p);
- // Then the paths of the shared libraries we are linking to.
- //
- // I guess this is where we will do things differently if updating for
- // install.
+ // Then the paths of the shared libraries we are linking to. Unless
+ // this is update for install, in which case we have to do something
+ // different.
//
for (target* pt: t.prerequisite_targets)
{
if (libso* ls = pt->is_a<libso> ())
- sargs.push_back (
- "-Wl,-rpath," + ls->path ().directory ().string ());
+ {
+ if (a.outer_operation () != install_id)
+ {
+ sargs.push_back ("-Wl,-rpath," +
+ ls->path ().directory ().string ());
+ }
+ // Use -rpath-link on targets that support it (Linux, FreeBSD).
+ // Since with this option the paths are not stored in the library,
+ // we have to do this recursively (in fact, we don't really need
+ // it for top-level libraries).
+ //
+ else if (sys != "darwin")
+ append_rpath_link (sargs, *ls);
+ }
}
}