Module Name: src Committed By: matt Date: Mon Aug 13 02:49:04 UTC 2012
Added Files: src/lib/csu/arch/earm: Makefile.inc crt0.S crtbegin.S crtend.S crti.S crtn.S Log Message: crt* files for ARM EABI. This is pretty different from OABI. crti.S only has sysident, crtn.S is empty. True dtor/ctor processing is done elsewhere (in crt0.o for static or the rtld for dynamic images). All that is done in here is either a call to __cxa_finalize (dtor, only when SHARED) or register_frame_info and _JV_RegisterClasses. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 src/lib/csu/arch/earm/Makefile.inc \ src/lib/csu/arch/earm/crt0.S src/lib/csu/arch/earm/crtbegin.S \ src/lib/csu/arch/earm/crtend.S src/lib/csu/arch/earm/crti.S \ src/lib/csu/arch/earm/crtn.S Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.