Changeset 7fb3f1c in mainline for uspace/Makefile.common


Ignore:
Timestamp:
2011-04-30T20:22:35Z (15 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5b72635
Parents:
2ca5f632
Message:

Make all architectures buildable. Only allow enabling dynamic linking on ia32.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/Makefile.common

    r2ca5f632 r7fb3f1c  
    7373endif
    7474
    75 ifneq ($(SLIBRARY),)
    76         LARCHIVE = $(LIBRARY).la
    77         LOUTPUT = $(SLIBRARY)
    78         EXTRA_OUTPUT += $(LOUTPUT).disasm
    79         EXTRA_CLEAN += $(LOUTPUT).map $(LOUTPUT).ldisasm \
    80             $(LIBC_PREFIX)/shared/arch/$(UARCH)/_lib.ld
     75ifeq ($(CONFIG_BUILD_SHARED_LIBS), y)
     76        ifneq ($(SLIBRARY),)
     77                LARCHIVE = $(LIBRARY).la
     78                LOUTPUT = $(SLIBRARY)
     79                EXTRA_OUTPUT += $(LOUTPUT).disasm
     80                EXTRA_CLEAN += $(LOUTPUT).map $(LOUTPUT).ldisasm \
     81                    $(LIBC_PREFIX)/shared/arch/$(UARCH)/_lib.ld
     82        endif
    8183endif
    8284
Note: See TracChangeset for help on using the changeset viewer.