Subversion Repositories Kolibri OS

Rev

Rev 6312 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6312 Rev 6529
Line 1... Line 1...
1
/*OUTPUT_FORMAT("binary")*/
1
/*OUTPUT_FORMAT("binary")*/
2
 
-
 
-
 
2
SEARCH_DIR("=/mingw32/lib")
-
 
3
SEARCH_DIR("=/lib")
3
ENTRY(__start)
4
ENTRY(__start)
4
SECTIONS
5
SECTIONS
5
{
6
{
6
   .text 0x000000:
7
   .text 0x000000:
7
   {
8
   {
Line 71... Line 72...
71
        *(.data)
72
        *(.data)
72
        *(.data2)
73
        *(.data2)
73
        *(SORT(.data$*))
74
        *(SORT(.data$*))
74
        *(.jcr)
75
        *(.jcr)
75
        __CRT_MT = .;
76
        __CRT_MT = .;
76
        LONG(0);
77
        LONG(1);
77
        PROVIDE ( __data_end__ = .) ;
78
        PROVIDE ( __data_end__ = .) ;
78
        *(.data_cygwin_nocopy)
79
        *(.data_cygwin_nocopy)
79
        ___iend = . ;
80
        ___iend = . ;
80
   }
81
   }
Line 81... Line 82...
81
 
82
 
82
   .eh_frame BLOCK(16) :
83
   .eh_frame BLOCK(16) :
83
   {
84
   {
84
        PROVIDE (___EH_FRAME_BEGIN__ = .) ;
85
        PROVIDE (___EH_FRAME_BEGIN__ = .) ;
-
 
86
        *(.eh_frame*)
-
 
87
	___FRAME_END__ = . ;
85
        *(.eh_frame*)
88
	LONG(0);
Line 86... Line 89...
86
   }
89
   }
87
 
90
 
88
   .idata ALIGN(16):
91
   .idata ALIGN(16):
Line 118... Line 121...
118
    *(.debug$T)
121
    *(.debug$T)
119
    *(.debug$F)
122
    *(.debug$F)
120
    *(.drectve)
123
    *(.drectve)
121
    *(.note.GNU-stack)
124
    *(.note.GNU-stack)
122
    *(.comment)
125
    *(.comment)
-
 
126
/*    *(.eh_frame) */
123
    *(.debug_abbrev)
127
    *(.debug_abbrev)
124
    *(.debug_info)
128
    *(.debug_info)
125
    *(.debug_line)
129
    *(.debug_line)
126
    *(.debug_frame)
130
    *(.debug_frame)
127
    *(.debug_loc)
131
    *(.debug_loc)
Line 129... Line 133...
129
    *(.debug_aranges)
133
    *(.debug_aranges)
130
    *(.debug_ranges)
134
    *(.debug_ranges)
131
  }
135
  }
Line 132... Line 136...
132
 
136
 
-
 
137
}