aboutsummaryrefslogtreecommitdiff
path: root/test cases
diff options
context:
space:
mode:
authorDan Kegel <dank@kegel.com>2020-05-12 09:28:01 -0700
committerDan Kegel <dank@kegel.com>2020-05-16 20:26:03 +0000
commitf8cfb74e9b084afb748e03aaed532679e9cf3948 (patch)
tree96d850ed9d07070eacf50dc4cbd0ff83b6d50ec7 /test cases
parentd7235c5905fa98207d90f3ad34bf590493498d5b (diff)
downloadmeson-f8cfb74e9b084afb748e03aaed532679e9cf3948.zip
meson-f8cfb74e9b084afb748e03aaed532679e9cf3948.tar.gz
meson-f8cfb74e9b084afb748e03aaed532679e9cf3948.tar.bz2
Let LDFLAGS specify rpath.
Fixes #2567
Diffstat (limited to 'test cases')
-rw-r--r--test cases/unit/77 global-rpath/meson.build3
-rw-r--r--test cases/unit/77 global-rpath/rpathified.cpp6
-rw-r--r--test cases/unit/77 global-rpath/yonder/meson.build5
-rw-r--r--test cases/unit/77 global-rpath/yonder/yonder.cpp3
-rw-r--r--test cases/unit/77 global-rpath/yonder/yonder.h1
5 files changed, 18 insertions, 0 deletions
diff --git a/test cases/unit/77 global-rpath/meson.build b/test cases/unit/77 global-rpath/meson.build
new file mode 100644
index 0000000..c67d9e0
--- /dev/null
+++ b/test cases/unit/77 global-rpath/meson.build
@@ -0,0 +1,3 @@
+project('global-rpath', 'cpp')
+yonder_dep = dependency('yonder')
+executable('rpathified', 'rpathified.cpp', dependencies: [yonder_dep], install: true)
diff --git a/test cases/unit/77 global-rpath/rpathified.cpp b/test cases/unit/77 global-rpath/rpathified.cpp
new file mode 100644
index 0000000..3788906
--- /dev/null
+++ b/test cases/unit/77 global-rpath/rpathified.cpp
@@ -0,0 +1,6 @@
+#include <yonder.h>
+#include <string.h>
+int main(int argc, char **argv)
+{
+ return strcmp(yonder(), "AB54 6BR");
+}
diff --git a/test cases/unit/77 global-rpath/yonder/meson.build b/test cases/unit/77 global-rpath/yonder/meson.build
new file mode 100644
index 0000000..e32f383
--- /dev/null
+++ b/test cases/unit/77 global-rpath/yonder/meson.build
@@ -0,0 +1,5 @@
+project('yonder', 'cpp')
+yonder = shared_library('yonder', 'yonder.cpp', install: true)
+install_headers('yonder.h')
+pkgconfig = import('pkgconfig')
+pkgconfig.generate(yonder)
diff --git a/test cases/unit/77 global-rpath/yonder/yonder.cpp b/test cases/unit/77 global-rpath/yonder/yonder.cpp
new file mode 100644
index 0000000..b182d34
--- /dev/null
+++ b/test cases/unit/77 global-rpath/yonder/yonder.cpp
@@ -0,0 +1,3 @@
+#include "yonder.h"
+
+char *yonder(void) { return "AB54 6BR"; }
diff --git a/test cases/unit/77 global-rpath/yonder/yonder.h b/test cases/unit/77 global-rpath/yonder/yonder.h
new file mode 100644
index 0000000..9d9ad16
--- /dev/null
+++ b/test cases/unit/77 global-rpath/yonder/yonder.h
@@ -0,0 +1 @@
+char *yonder(void);