Changeset d2e7a51 in mainline for uspace/Makefile.common


Ignore:
Timestamp:
2017-11-08T21:59:02Z (6 years ago)
Author:
jzr <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9d8b12da
Parents:
f5b6fb5
Message:

Link libsoftfloat unconditionally on all architectures.

It doesn't hurt anything and there's less special cases this way.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/Makefile.common

    rf5b6fb5 rd2e7a51  
    151151endif
    152152
     153# Prepare for POSIX before including platform specific stuff
     154ifeq ($(POSIX_COMPAT),y)
     155        CFLAGS += -I$(LIBPOSIX_PREFIX)/include/posix -I$(LIBPOSIX_PREFIX)/include/
     156        BASE_LIBS = $(LIBPOSIX_PREFIX)/libposixaslibc.a $(LIBPOSIX_PREFIX)/libc4posix.a $(LIBSOFTINT_PREFIX)/libsoftint.a
     157endif
     158
     159BASE_LIBS += $(LIBSOFTFLOAT_PREFIX)/libsoftfloat.a
     160
    153161ifeq ($(LINK_DYNAMIC),y)
    154162        LFLAGS += -Bdynamic
     
    210218endif
    211219
    212 # Prepare for POSIX before including platform specific stuff
    213 ifeq ($(POSIX_COMPAT),y)
    214         CFLAGS += -I$(LIBPOSIX_PREFIX)/include/posix -I$(LIBPOSIX_PREFIX)/include/
    215         BASE_LIBS = $(LIBPOSIX_PREFIX)/libposixaslibc.a $(LIBPOSIX_PREFIX)/libc4posix.a $(LIBSOFTINT_PREFIX)/libsoftint.a
    216 endif
    217 
    218220## Setup platform configuration
    219221#
Note: See TracChangeset for help on using the changeset viewer.