Everything

build.Compile.FloatType


This property is for setting or referring to the method of floating-point calculation. It is a compile option for the active project. [CC-RH]

[Specification format]

build.Compile.FloatType = precision

[Setting(s)]

Setting

Description

floatType

Specify the method of floating-point calculation.

The following lists the specifiable values.

Type

Description

FloatType.Fpu

Generates floating-point calculation instructions of FPU for floating-point calculations.

FloatType.Auto

Generates floating-point calculation instructions.

FloatType.Soft

Generates runtime library call instructions for floating-point calculations.

[Reference]

Set value

[Detailed description]

-

This property is for setting or referring to the method of floating-point calculation. It is a compile option for the active project.

[Example of use]

>>>build.Compile.FloatType = FloatType.Fpu
>>>print build.Compile.FloatType
Fpu
>>>