mirror of
https://github.com/EasyTier/EasyTier.git
synced 2026-09-02 09:09:17 +00:00
Add a native EasyTier proof-of-concept binary with TCP and UDP transports, TUN, UDP hole punching, AES-GCM, and a read-only RPC portal. Introduce a release-derived mini profile and musl linker policy so x86_64, big-endian MIPS, and little-endian MIPS stay below the strict 5,000,000-byte target without UPX.
15 lines
216 B
Plaintext
15 lines
216 B
Plaintext
SECTIONS
|
|
{
|
|
.eh_frame :
|
|
{
|
|
KEEP(*crtbegin.o(.eh_frame))
|
|
KEEP(*crtend.o(.eh_frame))
|
|
}
|
|
/DISCARD/ :
|
|
{
|
|
*(EXCLUDE_FILE (*crtbegin.o *crtend.o) .eh_frame)
|
|
*(.eh_frame_hdr)
|
|
}
|
|
}
|
|
INSERT AFTER .data;
|