Skip to content

Commit 3195166

Browse files
committed
Temporary enable fix-elf by default
bd9670ad3d9e38289bae7d361cdb0923077bb552
1 parent ce9a3b0 commit 3195166

File tree

6 files changed

+3643
-1
lines changed

6 files changed

+3643
-1
lines changed

build/ymake.core.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2123,7 +2123,7 @@ module DLL_UNIT: _LINK_UNIT {
21232123
}
21242124

21252125
when ($OS_LINUX == "yes" && $ARCH_X86_64 == "yes") {
2126-
when ($_FIX_ELF == "yes") {
2126+
when ($_NO_FIX_ELF != "yes") {
21272127
LINK_DYN_LIB_FLAGS+=--fix-elf ${tool:"tools/fix_elf"}
21282128
}
21292129
}

tools/fix_elf/bin/ya.make

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
PROGRAM(fix_elf)
2+
3+
SRCDIR(
4+
tools/fix_elf
5+
)
6+
7+
SRCS(
8+
patch.cpp
9+
)
10+
11+
PEERDIR(
12+
library/cpp/getopt/small
13+
)
14+
15+
END()

0 commit comments

Comments
 (0)