diff options
author | Dan Kegel <dank@kegel.com> | 2020-05-16 20:37:34 +0000 |
---|---|---|
committer | Dan Kegel <dank@kegel.com> | 2020-05-16 20:51:37 +0000 |
commit | ac8319add14c80369f9d3e8e8c034a2fcb47ef9d (patch) | |
tree | e429c70729c3ecf3423a63611cb4429e9c46addb /docs/markdown | |
parent | f8cfb74e9b084afb748e03aaed532679e9cf3948 (diff) | |
download | meson-ac8319add14c80369f9d3e8e8c034a2fcb47ef9d.zip meson-ac8319add14c80369f9d3e8e8c034a2fcb47ef9d.tar.gz meson-ac8319add14c80369f9d3e8e8c034a2fcb47ef9d.tar.bz2 |
docs: add snippet documenting rpath behavior change
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/snippets/rpath_behavior.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/markdown/snippets/rpath_behavior.md b/docs/markdown/snippets/rpath_behavior.md new file mode 100644 index 0000000..c46f0c2 --- /dev/null +++ b/docs/markdown/snippets/rpath_behavior.md @@ -0,0 +1,7 @@ +## rpath removal now more careful + +On Linux-like systems, meson adds rpath entries to allow running apps +in the build tree, and then removes those build-time-only +rpath entries when installing. Rpath entries may also come +in via LDFLAGS and via .pc files. Meson used to remove those +latter rpath entries by accident, but is now more careful. |