diff options
author | prettyboy <prettyboy@yandex-team.com> | 2023-08-24 18:54:01 +0300 |
---|---|---|
committer | prettyboy <prettyboy@yandex-team.com> | 2023-08-24 19:22:14 +0300 |
commit | debbd0cf88b4d90e9d441bc68be455abd90d2b15 (patch) | |
tree | 0db4ab0db0e968d2663dfcf081cc744a00f0923c /build/platform/local_so | |
parent | 036e55c4182c5cc43a0b7e6af296d52cc5aa1d95 (diff) | |
download | ydb-debbd0cf88b4d90e9d441bc68be455abd90d2b15.tar.gz |
[devtools/contrib/piglet/projects/ydb/config.yaml] Removed build/platform/ from denylists
Cостояние build/platform/ после реимпорта https://paste.yandex-team.ru/8b2b3daa-e68b-42c1-a136-94d8409f87ae/text
Diffstat (limited to 'build/platform/local_so')
-rw-r--r-- | build/platform/local_so/readme.md | 3 | ||||
-rw-r--r-- | build/platform/local_so/ya.make | 7 |
2 files changed, 10 insertions, 0 deletions
diff --git a/build/platform/local_so/readme.md b/build/platform/local_so/readme.md new file mode 100644 index 0000000000..f16bc202cf --- /dev/null +++ b/build/platform/local_so/readme.md @@ -0,0 +1,3 @@ +This is supporting library for DYNAMIC_LIBRARY module. + +It sets LDFLAG that brings support of dynamic loading from binary's directory on Linux. On Darwin and Windows this behavior is enabled by default. diff --git a/build/platform/local_so/ya.make b/build/platform/local_so/ya.make new file mode 100644 index 0000000000..547ed3f991 --- /dev/null +++ b/build/platform/local_so/ya.make @@ -0,0 +1,7 @@ +RESOURCES_LIBRARY() + +IF (OS_LINUX) + SET_APPEND(RPATH_GLOBAL '-Wl,-rpath,$ORIGIN') +ENDIF() + +END() |