diff options
author | thetweak <thetweak@yandex-team.com> | 2024-06-12 21:35:41 +0300 |
---|---|---|
committer | thetweak <thetweak@yandex-team.com> | 2024-06-12 21:45:38 +0300 |
commit | a138d1c8e540b93078ba6736790b57c94f8ae635 (patch) | |
tree | 8dff8627c5cf27c3500cb5042646ab43246be724 | |
parent | 0fcdd8301b48809803aefa06a435ab8538a5bc3f (diff) | |
download | ydb-a138d1c8e540b93078ba6736790b57c94f8ae635.tar.gz |
Change "build/ymake.core.conf": add .a and .lib extensions to _LINK_UNIT to enable prebuilt libs at PROGRAM level
0cc271a33abdfed1937da5019bf4dbd7e3ba8e98
-rw-r--r-- | build/ymake.core.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/ymake.core.conf b/build/ymake.core.conf index 35dfccbf9c..3c155dfaec 100644 --- a/build/ymake.core.conf +++ b/build/ymake.core.conf @@ -1066,7 +1066,7 @@ macro LINK_EXEC_DYN_LIB_IMPL(WHOLE_ARCHIVE_PEERS...) { ### ### The base of all linkable modules: programs, DLLs etc. Describes common linking logic. module _LINK_UNIT: _BASE_UNIT { - .EXTS=.o .obj .supp .tidyjson .ld + .EXTS=.o .obj .supp .tidyjson .ld .a .lib .CMD=LINK_EXE .ALLOWED=EXTRALIBS OBJADDE_GLOBAL RESOURCE_FILES .NODE_TYPE=Program |