Changeset 5b72635 in mainline for boot/Makefile.common


Ignore:
Timestamp:
2011-05-01T10:04:33Z (13 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ec883cf
Parents:
7fb3f1c
Message:

Use dynamic linking for all apps and servers except those that are used
as init binaries. Turn on and off with CONFIG_USE_SHARED_LIBS.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/Makefile.common

    r7fb3f1c r5b72635  
    120120RD_LIBS =
    121121
    122 ifeq ($(CONFIG_RTLD), y)
    123         RD_LIBS += $(USPACE_PATH)/lib/test/libtest.so.0
    124 endif
    125 
    126122ifeq ($(CONFIG_BUILD_SHARED_LIBS), y)
    127         RD_LIBS += $(USPACE_PATH)/lib/c/libc.so.0
    128         RD_LIBS += $(USPACE_PATH)/lib/softint/libsoftint.so.0
    129         RD_APPS += $(USPACE_PATH)/app/dltest/dltest
     123        RD_LIBS += \
     124                $(USPACE_PATH)/lib/test/libtest.so.0 \
     125                $(USPACE_PATH)/lib/c/libc.so.0 \
     126                $(USPACE_PATH)/lib/softint/libsoftint.so.0
     127        RD_APPS += \
     128                $(USPACE_PATH)/app/dltest/dltest
    130129endif
    131130
Note: See TracChangeset for help on using the changeset viewer.