Changeset f1e496a in mainline


Ignore:
Timestamp:
2012-11-24T02:29:51Z (11 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
22a0ee8
Parents:
3412e844
Message:

arm32, uspace: Use fpu when available.

Don't link with libsoftfloat when fpu is available.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/arch/arm32/Makefile.common

    r3412e844 rf1e496a  
    2828#
    2929
     30GCC_CFLAGS += -ffixed-r9 -mtp=soft -fno-omit-frame-pointer -mapcs-frame -march=$(subst _,-,$(PROCESSOR))
     31
     32ifeq ($(CONFIG_FPU),y)
     33GCC_CFLAGS += -mfloat-abi=hard
     34else
    3035BASE_LIBS += $(LIBSOFTFLOAT_PREFIX)/libsoftfloat.a
    31 GCC_CFLAGS += -ffixed-r9 -mtp=soft -fno-omit-frame-pointer -mapcs-frame -march=$(subst _,-,$(PROCESSOR))
     36endif
    3237
    3338ENDIANESS = LE
Note: See TracChangeset for help on using the changeset viewer.