mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 06:07:59 +00:00
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
|