relocation truncated to fit (in arm64 baremetal program)
In my aarch64 baremetal program, this line causes an error. printf(“axpu_kernel_binary = %p, axpu_kernel_binary_len = %x\n”, axpu_kernel_binary, axpu_kernel_binary_len); By the linker script, the .axpudata_kernel_binary section is located at 0x100a00000 and the axpu_kernel_binary which is an address was given a section attribute for .axpudata_kernel_binary section. So the array sits at 0x100a00000 (which is above 4GB, needing … Read more