File tree Expand file tree Collapse file tree 6 files changed +26
-8
lines changed Expand file tree Collapse file tree 6 files changed +26
-8
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,8 @@ let package = Package(
14
14
. executableTarget(
15
15
name: " Application " ,
16
16
dependencies: [
17
- . product( name: " MMIO " , package : " swift-mmio " )
17
+ . product( name: " MMIO " , package : " swift-mmio " ) ,
18
+ " Support " ,
18
19
] ) ,
19
20
. target( name: " Support " ) ,
20
21
] )
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
SECTIONS
2
2
{
3
- . = 0x80000; /* Kernel load address for AArch64 */
3
+ /* Kernel load address for AArch64 */
4
+ . = 0x80000;
4
5
.text : { KEEP(*(.text.boot)) *(.text .text.* .gnu.linkonce.t*) }
5
6
.rodata : { *(.rodata .rodata.* .gnu.linkonce.r*) }
6
7
PROVIDE (_data = .);
@@ -14,6 +15,13 @@ SECTIONS
14
15
}
15
16
_end = .;
16
17
17
- /DISCARD/ : { *(.comment) *(.gnu*) *(.note*) *(.eh_frame*) }
18
+ /DISCARD/ : {
19
+ *(.comment)
20
+ *(.gnu*)
21
+ *(.note*)
22
+ *(.eh_frame*)
23
+ *(.swift_modhash)
24
+ }
18
25
}
19
- __bss_size = (__bss_end - __bss_start)>>3;
26
+
27
+ __bss_size = (__bss_end - __bss_start) >> 3;
Original file line number Diff line number Diff line change @@ -14,7 +14,8 @@ let package = Package(
14
14
. executableTarget(
15
15
name: " Application " ,
16
16
dependencies: [
17
- . product( name: " MMIO " , package : " swift-mmio " )
17
+ . product( name: " MMIO " , package : " swift-mmio " ) ,
18
+ " Support " ,
18
19
] ) ,
19
20
. target( name: " Support " ) ,
20
21
] )
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
SECTIONS
2
2
{
3
- . = 0x80000; /* Kernel load address for AArch64 */
3
+ /* Kernel load address for AArch64 */
4
+ . = 0x80000;
4
5
.text : { KEEP(*(.text.boot)) *(.text .text.* .gnu.linkonce.t*) }
5
6
.rodata : { *(.rodata .rodata.* .gnu.linkonce.r*) }
6
7
PROVIDE (_data = .);
@@ -14,6 +15,13 @@ SECTIONS
14
15
}
15
16
_end = .;
16
17
17
- /DISCARD/ : { *(.comment) *(.gnu*) *(.note*) *(.eh_frame*) }
18
+ /DISCARD/ : {
19
+ *(.comment)
20
+ *(.gnu*)
21
+ *(.note*)
22
+ *(.eh_frame*)
23
+ *(.swift_modhash)
24
+ }
18
25
}
19
- __bss_size = (__bss_end - __bss_start)>>3;
26
+
27
+ __bss_size = (__bss_end - __bss_start) >> 3;
You can’t perform that action at this time.
0 commit comments