aboutsummaryrefslogtreecommitdiff
path: root/lib/csu/tests/Makefile.tests
Commit message (Collapse)AuthorAgeFilesLines
* Build the csu tests on all architectures.Andrew Turner2018-10-301-1/+1
| | | | | | | | | | | The tests haven't been run them, but this is enough to build them so I can get feedback on if the various crt.h headers are correct. MFC with: r339738 Sponsored by: DARPA, AFRL Notes: svn path=/head/; revision=339916
* Drop the csu tests WARNS to 5 to fix the powerpc64 build.Andrew Turner2018-10-261-0/+2
| | | | | | | | MFC with: r339738 Sponsored by: DARPA, AFRL Notes: svn path=/head/; revision=339770
* Implement a BSD licensed crtbegin/crtendAndrew Turner2018-10-251-0/+11
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: svn path=/head/; revision=339738