From 8eabb9b02f141f08d9695773541f16c0c1e2cb47 Mon Sep 17 00:00:00 2001 From: John Reiser Date: Mon, 8 May 2017 18:54:41 -0700 Subject: [PATCH] i386 recover from merge modified: p_lx_elf.cpp --- src/p_lx_elf.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/p_lx_elf.cpp b/src/p_lx_elf.cpp index 4124a123..df9cc5f6 100644 --- a/src/p_lx_elf.cpp +++ b/src/p_lx_elf.cpp @@ -590,9 +590,9 @@ void PackLinuxElf32::defineSymbols(Filter const *ft) } adrm = my_page_mask & (~my_page_mask + adrm); // round up to page boundary - linker->defineSymbol("LENU", lenu); // len for unmap - linker->defineSymbol("LENM", lenm); // len for map - linker->defineSymbol("ADRM", adrm); // offset from &Elf32_Ehdr + (void)lenu; //linker->defineSymbol("LENU", lenu); // len for unmap + (void)lenm; //linker->defineSymbol("LENM", lenm); // len for map + (void)adrm; //linker->defineSymbol("ADRM", adrm); // offset from &Elf32_Ehdr //linker->dumpSymbols(); // debug }