summaryrefslogtreecommitdiff
path: root/driver/utils/merge_sections_pe.ld
blob: c9eed87ceda13c12db0c1758d21eb21d3d5375a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* Linker script to undo -split-sections and merge all sections together when
 * linking relocatable object files for GHCi.
 * ld -r normally retains the individual sections, which is what you would want
 * if the intention is to eventually link into a binary with --gc-sections, but
 * it doesn't have a flag for directly doing what we want. */
SECTIONS
{
    .text : {
        *(.text$*)
    }
    .rdata : {
        *(.rdata$*)
    }
    .data : {
        *(.data$*)
    }
    .pdata : {
        *(.pdata$*)
    }
    .xdata : {
        *(.xdata$*)
    }
    .bss : {
        *(.bss$*)
    }
}