Add stub arm64 linuxulator VDSO ldscript

This needs to be revisited with the VDSO implementation, but is
sufficient to allow the linux64 module to build on arm64 for testing
and development.

Sponsored by:	Turing Robotic Industries
This commit is contained in:
Ed Maste 2018-06-28 20:36:21 +00:00
parent b77bd037a1
commit d01c382e91
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=335775

View File

@ -0,0 +1,22 @@
/*
* Stub arm64 vdso linker script.
* LINUXTODO: update along with VDSO implementation
*
* $FreeBSD$
*/
SECTIONS
{
. = . + SIZEOF_HEADERS;
.text : { *(.text*) }
.rodata : { *(.rodata*) }
.hash : { *(.hash) }
.gnu.hash : { *(.gnu.hash) }
.dynsym : { *(.dynsym) }
.dynstr : { *(.dynstr) }
.gnu.version : { *(.gnu.version) }
.gnu.version_d : { *(.gnu.version_d) }
.gnu.version_r : { *(.gnu.version_r) }
.data : { *(.data*) }
.dynamic : { *(.dynamic) }
}