Changeset ec3e2ed in mainline for boot/Makefile.common


Ignore:
Timestamp:
2011-03-23T23:10:36Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1d465bf
Parents:
143932e3
Message:

Build shared C library. Add config options for building and using all libraries
as shared instead of just C library (not working yet). Move libtest under
lib/test.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/Makefile.common

    r143932e3 rec3e2ed  
    119119
    120120RD_LIBS = \
    121         $(USPACE_PATH)/lib/libtest/libtest.so.0
     121        $(USPACE_PATH)/lib/test/libtest.so.0
    122122
    123 ifeq ($(CONFIG_BUILD_SHARED_LIBC), y)
    124         RD_LIBS += $(USPACE_PATH)/lib/c/shared/libc.so.0
     123ifeq ($(CONFIG_BUILD_SHARED_LIBS), y)
     124        RD_LIBS += $(USPACE_PATH)/lib/c/libc.so.0
    125125        RD_APPS += $(USPACE_PATH)/app/dltest/dltest
    126126endif
Note: See TracChangeset for help on using the changeset viewer.