diff options
author | Andrew Turner <andrew@FreeBSD.org> | 2018-10-25 17:39:41 +0000 |
---|---|---|
committer | Andrew Turner <andrew@FreeBSD.org> | 2018-10-25 17:39:41 +0000 |
commit | 31d62a73c2e6ac0ff413a7a17700ffc7dce254ef (patch) | |
tree | 8e38af4c0995bdf5f590fb13f735df0b9ff1a3d7 /lib/csu/tests/Makefile.inc | |
parent | ad054101ebaa437404badd9cade3817a625f6a35 (diff) |
Implement a BSD licensed crtbegin/crtend
These are needed for .ctors/.dtors and .jcr handling. The former needs
all the function pointers to be called in the correct order from the
.init/.fini section. The latter just needs to call a gcj specific function
if it exists with a pointer to the start of the .jcr section.
This is currently disabled until __dso_handle support is added.
Reviewed by: emaste
MFC after: 1 month
Sponsored by: DARPA, AFRL
Differential Revision: https://reviews.freebsd.org/D17587
Notes
Notes:
svn path=/head/; revision=339738
Diffstat (limited to 'lib/csu/tests/Makefile.inc')
-rw-r--r-- | lib/csu/tests/Makefile.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/csu/tests/Makefile.inc b/lib/csu/tests/Makefile.inc new file mode 100644 index 000000000000..a9e3386bbcaa --- /dev/null +++ b/lib/csu/tests/Makefile.inc @@ -0,0 +1,3 @@ +# $FreeBSD$ + +TESTSDIR:= ${TESTSBASE}/${RELDIR:C/csu\/tests/csu/} |