Abseil Common Libraries (C++) (grcp 依赖)
https://abseil.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
352 B
14 lines
352 B
4 years ago
|
/* This linker script forces the flags used by flags_benchmark
|
||
|
* into a separate page-aligned section. This isn't necessary for
|
||
|
* correctness but ensures that the benchmark results are more
|
||
|
* reproducible across unrelated code changes.
|
||
|
*/
|
||
|
SECTIONS {
|
||
|
.benchmark_flags : {
|
||
|
. = ALIGN(0x1000);
|
||
|
* (.benchmark_flags);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
INSERT AFTER .data
|