util/riscvtools: Provide a tohost/fromhost symbols so Spike doesn't hang

See https://github.com/riscv/riscv-isa-sim/issues/54 for more
information.

Change-Id: I8cda8dc07866d395eb3ce5d94df8232840fa8b82
Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Reviewed-on: https://review.coreboot.org/15288
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
This commit is contained in:
Jonathan Neuschäfer 2016-07-07 20:53:28 +02:00 committed by Ronald G. Minnich
parent dbd8b54441
commit 8660580567
1 changed files with 4 additions and 0 deletions

View File

@ -8,4 +8,8 @@ SECTIONS
.data : {
*(.data)
}
tohost = .;
. = . + 8;
fromhost = .;
}