mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-26 00:41:08 +00:00
98ee7612f1
Added spec file for ARM-VFPv3 floating-point unit. This shadows 'base/include/arm/' with 'base/include/arm/vfp' and enables a 'memcpy_cpu' version that mainly uses the FPU. Enabled VFP support for 'foc_arndale'. Ref #773
16 lines
251 B
Makefile
16 lines
251 B
Makefile
#
|
|
# \brief Enable VFPV3-FPU on ARM
|
|
# \author Sebastian Sumpf
|
|
# \date 2013-06-16
|
|
#
|
|
|
|
#
|
|
# Enable floating point support in compiler
|
|
#
|
|
CC_MARCH += -mfpu=vfpv3 -mfloat-abi=softfp
|
|
|
|
#
|
|
# Include floating-point unit code
|
|
#
|
|
REP_INC_DIR += include/arm/vfp
|