Skip to content

Commit d5211a4

Browse files
DinoVmeta-codesync[bot]
authored andcommitted
Increase linker script size
Summary: Increase the size of the linker script Reviewed By: alexmalyshev Differential Revision: D109712735 fbshipit-source-id: 4b4ec1a8a7f9978d82f17bf255b0aa8437652210
1 parent 5a93a3a commit d5211a4

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

cinderx/linker_script.ld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
SECTIONS {
1010
.cinder_jit (NOLOAD) : ALIGN(2097152) {
1111
PROVIDE_HIDDEN(__cinder_jit_start = .);
12-
. = . + 75 * 1024 * 1024;
12+
. = . + 85 * 1024 * 1024;
1313
PROVIDE_HIDDEN(__cinder_jit_end = .);
1414
}
1515
} INSERT BEFORE .text;

cinderx/linker_script_bolt.ld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
SECTIONS {
77
.cinder_jit (NOLOAD) : ALIGN(2097152) {
88
PROVIDE_HIDDEN(__cinder_jit_start = .);
9-
. = . + 75 * 1024 * 1024;
9+
. = . + 85 * 1024 * 1024;
1010
PROVIDE_HIDDEN(__cinder_jit_end = .);
1111
}
1212
} INSERT AFTER .bss;

0 commit comments

Comments
 (0)