f2a611ce6c
Now arm specific -mfloat-abi flag is added to compiler flags only for arm architecture in linux_arm_device_post.conf. Change-Id: Ie77ac6e0717d9d1fd9c14e1d6a26e86f08ab418c Reviewed-by: Jarosław Staniek <staniek@kde.org> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
8 lines
160 B
Plaintext
8 lines
160 B
Plaintext
contains(DISTRO_OPTS, hard-float) {
|
|
COMPILER_FLAGS += -mfloat-abi=hard
|
|
} else {
|
|
COMPILER_FLAGS += -mfloat-abi=softfp
|
|
}
|
|
|
|
include(linux_device_post.conf)
|