Changeset 1d7f37b3 in rtems
- Timestamp:
- 01/22/05 10:26:57 (19 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 0edbe88
- Parents:
- f68b890
- Location:
- c/src/lib/libbsp/unix/posix
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/unix/posix/ChangeLog
rf68b890 r1d7f37b3 1 2005-01-22 Ralf Corsepius <ralf.corsepius@rtems.org> 2 3 * Makefile.am: Merge rtems-ctor.o into libbsp.a. 4 Fix building rtems-ctor.o and no-ctor.o. 5 1 6 2005-01-07 Ralf Corsepius <ralf.corsepius@rtems.org> 2 7 -
c/src/lib/libbsp/unix/posix/Makefile.am
rf68b890 r1d7f37b3 29 29 30 30 if HAS_CXX 31 # FIXME: libno-ctor ?? 31 EXTRA_LIBRARIES = librtemscxx.a 32 33 librtemscxx_a_SOURCES = startup/no-ctor.c 34 35 # Install as a separate .$(OBJEXT) 36 project_lib_DATA += no-ctor.$(OBJEXT) 32 37 33 38 # We install the RTEMS constructor as a separate .$(OBJEXT) 34 39 # so it can be easily place correctly by the compiler config file. 35 rtems-ctor.$(OBJEXT): startup/rtems-ctor.cc36 ${CXXCOMPILE} -o $@ -c $<37 40 project_lib_DATA += rtems-ctor.$(OBJEXT) 38 39 no-ctor.$(OBJEXT): startup/no-ctor.cc40 ${CXXCOMPILE} -o $@ -c $<41 42 project_lib_DATA += no-ctor.$(OBJEXT)43 41 endif 44 42 … … 78 76 noinst_LIBRARIES = libbsp.a 79 77 libbsp_a_SOURCES = 78 if HAS_CXX 79 libbsp_a_SOURCES += startup/rtems-ctor.cc 80 endif 80 81 libbsp_a_LIBADD = startup.rel clock.rel console.rel timer.rel 81 82 if HAS_MP … … 122 123 123 124 if HAS_CXX 125 $(PROJECT_LIB)/no-ctor.$(OBJEXT): no-ctor.$(OBJEXT) $(PROJECT_LIB)/$(dirstamp) 126 $(INSTALL_DATA) $< $(PROJECT_LIB)/no-ctor.$(OBJEXT) 127 TMPINSTALL_FILES += $(PROJECT_LIB)/no-ctor.$(OBJEXT) 128 124 129 $(PROJECT_LIB)/rtems-ctor.$(OBJEXT): rtems-ctor.$(OBJEXT) $(PROJECT_LIB)/$(dirstamp) 125 130 $(INSTALL_DATA) $< $(PROJECT_LIB)/rtems-ctor.$(OBJEXT) 126 131 TMPINSTALL_FILES += $(PROJECT_LIB)/rtems-ctor.$(OBJEXT) 127 128 $(PROJECT_LIB)/no-ctor.$(OBJEXT): no-ctor.$(OBJEXT) $(PROJECT_LIB)/$(dirstamp)129 $(INSTALL_DATA) $< $(PROJECT_LIB)/no-ctor.$(OBJEXT)130 TMPINSTALL_FILES += $(PROJECT_LIB)/no-ctor.$(OBJEXT)131 132 endif 132 133
Note: See TracChangeset
for help on using the changeset viewer.