search for: a737893a

Displaying 1 result from an estimated 1 matches for "a737893a".

2018 May 21
1
ARM64, dropping ADRP instructions, and ld.lld
Hello Eric, If you do decide to investigate the linker script route, the ALIGN builitin function might be useful. I think the simplest way is to do something like: .text ALIGN(0x1000) : { *(.text) } .my_next_section ALIGN (0x1000) : { *(my_next_section) } Bothe .text and .my_next_section would start at 4k boundaries. Link to docs: