mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-24 10:35:12 +08:00
gold: fix ABI pagesize for aarch64
* aarch64.cc (aarch64_info): Set abi_pagesize to 64K.
This commit is contained in:
parent
f77ee8026d
commit
3b0357dada
@ -1,3 +1,7 @@
|
||||
2015-10-07 Andreas Schwab <schwab@suse.de>
|
||||
|
||||
* aarch64.cc (aarch64_info): Set abi_pagesize to 64K.
|
||||
|
||||
2015-10-06 Cary Coutant <ccoutant@gmail.com>
|
||||
|
||||
PR gold/18855
|
||||
|
@ -3424,7 +3424,7 @@ const Target::Target_info Target_aarch64<64, false>::aarch64_info =
|
||||
'\0', // wrap_char
|
||||
"/lib/ld.so.1", // program interpreter
|
||||
0x400000, // default_text_segment_address
|
||||
0x1000, // abi_pagesize (overridable by -z max-page-size)
|
||||
0x10000, // abi_pagesize (overridable by -z max-page-size)
|
||||
0x1000, // common_pagesize (overridable by -z common-page-size)
|
||||
false, // isolate_execinstr
|
||||
0, // rosegment_gap
|
||||
@ -3451,7 +3451,7 @@ const Target::Target_info Target_aarch64<32, false>::aarch64_info =
|
||||
'\0', // wrap_char
|
||||
"/lib/ld.so.1", // program interpreter
|
||||
0x400000, // default_text_segment_address
|
||||
0x1000, // abi_pagesize (overridable by -z max-page-size)
|
||||
0x10000, // abi_pagesize (overridable by -z max-page-size)
|
||||
0x1000, // common_pagesize (overridable by -z common-page-size)
|
||||
false, // isolate_execinstr
|
||||
0, // rosegment_gap
|
||||
@ -3478,7 +3478,7 @@ const Target::Target_info Target_aarch64<64, true>::aarch64_info =
|
||||
'\0', // wrap_char
|
||||
"/lib/ld.so.1", // program interpreter
|
||||
0x400000, // default_text_segment_address
|
||||
0x1000, // abi_pagesize (overridable by -z max-page-size)
|
||||
0x10000, // abi_pagesize (overridable by -z max-page-size)
|
||||
0x1000, // common_pagesize (overridable by -z common-page-size)
|
||||
false, // isolate_execinstr
|
||||
0, // rosegment_gap
|
||||
@ -3505,7 +3505,7 @@ const Target::Target_info Target_aarch64<32, true>::aarch64_info =
|
||||
'\0', // wrap_char
|
||||
"/lib/ld.so.1", // program interpreter
|
||||
0x400000, // default_text_segment_address
|
||||
0x1000, // abi_pagesize (overridable by -z max-page-size)
|
||||
0x10000, // abi_pagesize (overridable by -z max-page-size)
|
||||
0x1000, // common_pagesize (overridable by -z common-page-size)
|
||||
false, // isolate_execinstr
|
||||
0, // rosegment_gap
|
||||
|
Loading…
Reference in New Issue
Block a user