Tue Apr 28 13:26:37 2015 UTC ()
Add note about transform rules for HP-UX and Tru64 linkers.


(tnn)
diff -r1.2 -r1.3 pkgsrc/pkgtools/cwrappers/files/doc/unimplemented.txt

cvs diff -r1.2 -r1.3 pkgsrc/pkgtools/cwrappers/files/doc/unimplemented.txt (expand / switch to context diff)
--- pkgsrc/pkgtools/cwrappers/files/doc/unimplemented.txt 2014/12/30 15:13:20 1.2
+++ pkgsrc/pkgtools/cwrappers/files/doc/unimplemented.txt 2015/04/28 13:26:37 1.3
@@ -40,3 +40,12 @@
 
 - Drop -L, -l, -Wl,* if not in link mode
   -> see first point
+
+rpath aggregation:
+
+- OSF1 and HP-UX ld(1) do not support multiple -rpath or +b. Any such instances
+  need to be transformed to a colon-separated list. Example:
+
+  -Wl,-rpath -Wl,/dir1 -Wl,-rpath -Wl,/dir2 --> -Wl,+b -Wl,/dir1:/dir2
+
+  See cmd-sink-{hpux,osf1}-{ld,cc} in classic wrappers for more information.