mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-23 20:10:48 +08:00
10 lines
273 B
Plaintext
10 lines
273 B
Plaintext
|
contains(DISTRO_OPTS, hard-float) {
|
||
|
COMPILER_FLAGS += -mfloat-abi=hard
|
||
|
LINKER_FLAGS += -mfloat-abi=hard
|
||
|
} else: !contains(DISTRO_OPTS, aarch64) {
|
||
|
COMPILER_FLAGS += -mfloat-abi=softfp
|
||
|
LINKER_FLAGS += -mfloat-abi=softfp
|
||
|
}
|
||
|
|
||
|
include(linux_device_post.conf)
|