samples: Add powerpc64 little-endian toolchain sample

This change adds a powerpc64le-unknown-linux-gnu sample that can be used
to quickly create a little-endian tool-chain for powerpc64
architecture. This sample is based on the earlier work done by "Yann
E. MORIN" to add support for powerpc64 tool chain and implementing the
power64-unknown-linux-gnu sample. The existing sample however generates
a big-endian tool chain by default.

Signed-off-by: Vaibhav Jain <vaibhav@linux.vnet.ibm.com>
This commit is contained in:
Vaibhav Jain 2016-07-19 15:03:05 +05:30
parent 6e7c61650a
commit 4090f17e6b
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,13 @@
CT_LOCAL_TARBALLS_DIR="${HOME}/src"
CT_SAVE_TARBALLS=y
CT_LOG_EXTRA=y
CT_ARCH_64=y
CT_ARCH_powerpc=y
CT_KERNEL_linux=y
CT_BINUTILS_PLUGINS=y
CT_CC_LANG_CXX=y
CT_DEBUG_gdb=y
# CT_GDB_CROSS_PYTHON is not set
CT_GDB_NATIVE=y
CT_ARCH_ENDIAN="little"
CT_ARCH_LE=y

View File

@ -0,0 +1,3 @@
reporter_name="Vaibhav Jain"
reporter_url="https://github.com/vaibhav92/crosstool-ng"
reporter_comment="Based on power64-unknown-linux-gnu sample implemented by Yann E. MORIN"