flag_benchmark.lds 352 B

12345678910111213
  1. /* This linker script forces the flags used by flags_benchmark
  2. * into a separate page-aligned section. This isn't necessary for
  3. * correctness but ensures that the benchmark results are more
  4. * reproducible across unrelated code changes.
  5. */
  6. SECTIONS {
  7. .benchmark_flags : {
  8. . = ALIGN(0x1000);
  9. * (.benchmark_flags);
  10. }
  11. }
  12. INSERT AFTER .data