OUTPUT_ARCH( "riscv" ) ENTRY(rvtest_entry_point) SECTIONS { . = 0x00000000; .text.init : { *(.text.init) } .tohost : { *(.tohost) } .text : { *(.text) } .data : { *(.data) } .data.string : { *(.data.string)} .bss : { *(.bss) } _end = .; }