URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [lib/] [libbsp/] [unix/] [posix/] [startup/] [no-ctor.c] - Rev 173
Compare with Previous | Blame | View Log
/* * rtems, floss, libc are always compiled with GNU compilers * application code may be compiled with some other C++ compiler * that has a different global constructor technique. * * For the simple case, where the app has no global constructors or * is compiled by g++, we provide this empty routine * In order to get both g++ constructors (RTEMS::RTEMS, for example) * and application constructors run, we provide this routine. * * $Id: no-ctor.c,v 1.2 2001-09-27 12:01:15 chris Exp $ */ void invoke_non_gnu_constructors(void) { }