summaryrefslogtreecommitdiff
path: root/yocto-poky/meta/recipes-qt/qt4/qt4_arch.inc
diff options
context:
space:
mode:
Diffstat (limited to 'yocto-poky/meta/recipes-qt/qt4/qt4_arch.inc')
-rw-r--r--yocto-poky/meta/recipes-qt/qt4/qt4_arch.inc22
1 files changed, 22 insertions, 0 deletions
diff --git a/yocto-poky/meta/recipes-qt/qt4/qt4_arch.inc b/yocto-poky/meta/recipes-qt/qt4/qt4_arch.inc
new file mode 100644
index 000000000..e94c2847b
--- /dev/null
+++ b/yocto-poky/meta/recipes-qt/qt4/qt4_arch.inc
@@ -0,0 +1,22 @@
+inherit siteinfo
+
+ARM_INSTRUCTION_SET = "arm"
+
+set_arch() {
+ case ${TARGET_ARCH} in
+ aarch64*) QT_ARCH=aarch64 ;;
+ arm*) QT_ARCH=arm ;;
+ i*86*) QT_ARCH=i386 ;;
+ mips*) QT_ARCH=mips ;;
+ powerpc*) QT_ARCH=powerpc ;;
+ x86_64*) QT_ARCH=x86_64 ;;
+ esac
+}
+
+set_endian() {
+ if [ ${SITEINFO_ENDIANNESS} = "le" ] ; then
+ QT_ENDIAN="-little-endian"
+ elif [ ${SITEINFO_ENDIANNESS} = "be" ] ; then
+ QT_ENDIAN="-big-endian"
+ fi
+}