Changeset 5828554 in mainline for uspace/Makefile.common


Ignore:
Timestamp:
2014-01-19T14:37:22Z (10 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
cf982ff
Parents:
2f591127 (diff), 476f62c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

merge mainline changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/Makefile.common

    r2f591127 r5828554  
    4545#
    4646#   POSIX_COMPAT       set to 'y' to use POSIX compatibility layer
     47#   NEEDS_MATH         set to 'y' to add implementation of mathematical functions
    4748#
    4849# Optionally, for a binary:
     
    109110LIBSOFTFLOAT_PREFIX = $(LIB_PREFIX)/softfloat
    110111LIBSOFTINT_PREFIX = $(LIB_PREFIX)/softint
     112LIBMATH_PREFIX = $(LIB_PREFIX)/math
    111113
    112114LIBPOSIX_PREFIX = $(LIB_PREFIX)/posix
     
    143145LIBHTTP_PREFIX = $(LIB_PREFIX)/http
    144146LIBURI_PREFIX = $(LIB_PREFIX)/uri
     147
     148LIBMBR_PREFIX = $(LIB_PREFIX)/mbr
     149LIBGPT_PREFIX = $(LIB_PREFIX)/gpt
    145150
    146151ifeq ($(STATIC_NEEDED),y)
     
    233238endif
    234239
     240# Do we need math?
     241ifeq ($(NEEDS_MATH),y)
     242        BASE_LIBS += $(LIBMATH_PREFIX)/libmath.a
     243endif
     244
    235245## Setup platform configuration
    236246#
Note: See TracChangeset for help on using the changeset viewer.