Changeset 550d13e in rtems
- Timestamp:
- Oct 30, 2006, 10:23:46 PM (14 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- e1d578d8
- Parents:
- 302f5fa
- Location:
- c/src/lib/libbsp/unix/posix
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/unix/posix/ChangeLog
r302f5fa r550d13e 1 2006-10-30 Joel Sherrill <joel@OARcorp.com> 2 3 * startup/rtems-ctor.cc: Conditionally disable non-GCC code. 4 1 5 2006-10-17 Ralf Corsépius <ralf.corsepius@rtems.org> 2 6 -
c/src/lib/libbsp/unix/posix/startup/rtems-ctor.cc
r302f5fa r550d13e 78 78 79 79 extern "C" { 80 extern void invoke_non_gnu_constructors(void); 80 #ifndef __GNUC__ 81 extern void invoke_non_gnu_constructors(void); 82 #endif 81 83 82 84 int … … 97 99 */ 98 100 99 invoke_non_gnu_constructors(); 101 #ifndef __GNUC__ 102 invoke_non_gnu_constructors(); 103 #endif 100 104 101 105 /*
Note: See TracChangeset
for help on using the changeset viewer.