From: Martin Storsjo Date: Mon, 3 Dec 2018 20:02:05 +0000 (+0000) Subject: [COFF] Don't mark mingw .eh_frame sections writable X-Git-Tag: llvmorg-8.0.0-rc1~3023 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1aa7e900b331b3709f22ee1163958f49e723c311;p=platform%2Fupstream%2Fllvm.git [COFF] Don't mark mingw .eh_frame sections writable This improves compatibility with GCC produced object files, where the .eh_frame sections are read only. With mixed flags for the involved .eh_frame sections, LLD creates two separate .eh_frame sections in the output binary, one for each flag combination, while ld.bfd probably merges them. The previous setup of flags can be traced back to SVN r79346. Differential Revision: https://reviews.llvm.org/D55209 llvm-svn: 348177 --- diff --git a/llvm/lib/MC/MCObjectFileInfo.cpp b/llvm/lib/MC/MCObjectFileInfo.cpp index 0513ba5..c73a9eb 100644 --- a/llvm/lib/MC/MCObjectFileInfo.cpp +++ b/llvm/lib/MC/MCObjectFileInfo.cpp @@ -479,10 +479,10 @@ void MCObjectFileInfo::initELFMCObjectFileInfo(const Triple &T, bool Large) { } void MCObjectFileInfo::initCOFFMCObjectFileInfo(const Triple &T) { - EHFrameSection = Ctx->getCOFFSection( - ".eh_frame", COFF::IMAGE_SCN_CNT_INITIALIZED_DATA | - COFF::IMAGE_SCN_MEM_READ | COFF::IMAGE_SCN_MEM_WRITE, - SectionKind::getData()); + EHFrameSection = + Ctx->getCOFFSection(".eh_frame", COFF::IMAGE_SCN_CNT_INITIALIZED_DATA | + COFF::IMAGE_SCN_MEM_READ, + SectionKind::getData()); // Set the `IMAGE_SCN_MEM_16BIT` flag when compiling for thumb mode. This is // used to indicate to the linker that the text segment contains thumb instructions diff --git a/llvm/test/MC/COFF/eh-frame.s b/llvm/test/MC/COFF/eh-frame.s index e606b76..2c5ff20 100644 --- a/llvm/test/MC/COFF/eh-frame.s +++ b/llvm/test/MC/COFF/eh-frame.s @@ -12,3 +12,16 @@ _main: .cfi_endproc // CHECK: Name: .eh_frame +// CHECK-NEXT: VirtualSize: +// CHECK-NEXT: VirtualAddress: +// CHECK-NEXT: RawDataSize: +// CHECK-NEXT: PointerToRawData: +// CHECK-NEXT: PointerToRelocations: +// CHECK-NEXT: PointerToLineNumbers: +// CHECK-NEXT: RelocationCount: +// CHECK-NEXT: LineNumberCount: +// CHECK-NEXT: Characteristics [ +// CHECK-NEXT: IMAGE_SCN_ALIGN_4BYTES +// CHECK-NEXT: IMAGE_SCN_CNT_INITIALIZED_DATA +// CHECK-NEXT: IMAGE_SCN_MEM_READ +// CHECK-NEXT: ]