61efb292d2
Which is basically same as the Jetson K1 Pro, with SDK and compiler options adjusted. Change-Id: Ic0aa8144aad12e832ae440212f6a06f52668415d Reviewed-by: Louai Al-Khanji <louai.al-khanji@theqtcompany.com>
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)
|