Changeset 9e53406 in mainline for uspace/Makefile.common


Ignore:
Timestamp:
2016-02-20T15:23:57Z (8 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8f5e80be
Parents:
53e3950
Message:

ia32: Fix dynamically linked build.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/Makefile.common

    r53e3950 r9e53406  
    181181endif
    182182
     183# Build static because liburcu is linked against libc which uses thread
     184# local variables
     185ifneq ($(findstring urcu, $(LIBS)),)
     186        STATIC_BUILD = y
     187endif
     188
     189# Build static because libpcut is linked against libc which uses thread
     190# local variables
     191ifneq ($(TEST_SOURCES),)
     192        STATIC_BUILD = y
     193endif
     194
    183195ifeq ($(STATIC_BUILD),y)
    184196        BASE_LIBS = $(LIBC_PREFIX)/libc.a $(LIBSOFTINT_PREFIX)/libsoftint.a
Note: See TracChangeset for help on using the changeset viewer.