Changeset 69c1995 in mainline for kernel/arch/arm32/Makefile.inc


Ignore:
Timestamp:
2012-11-29T12:53:45Z (12 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e80d8f8
Parents:
3194d83 (diff), ce60be1 (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 ARM fpu hw support.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/arm32/Makefile.inc

    r3194d83 r69c1995  
    3535GCC_CFLAGS += -fno-omit-frame-pointer -mapcs-frame -march=$(subst _,-,$(PROCESSOR)) -mno-unaligned-access
    3636
     37ifeq ($(CONFIG_FPU),y)
     38# This is necessary to allow vmsr insn and fpexc manipulation
     39# Use vfp32 to allow context save/restore of d16-d31 regs.
     40GCC_CFLAGS += -mfloat-abi=hard -mfpu=vfp3
     41endif
     42
    3743BITS = 32
    3844ENDIANESS = LE
     
    4652        arch/$(KARCH)/src/machine_func.c \
    4753        arch/$(KARCH)/src/context.S \
     54        arch/$(KARCH)/src/fpu_context.c \
    4855        arch/$(KARCH)/src/dummy.S \
    4956        arch/$(KARCH)/src/cpu/cpu.c \
Note: See TracChangeset for help on using the changeset viewer.