Searched +full:toolchain +full:- +full:prefix (Results 1 – 9 of 9) sorted by relevance
| /rk3399_rockchip-uboot/tools/buildman/ |
| H A D | toolchain.py | 3 # SPDX-License-Identifier: GPL-2.0+ 36 self._match = '_%s-' % arch 48 class Toolchain: class 49 """A single toolchain 54 cross: Cross compile string, e.g. 'arm-linux-' 55 arch: Architecture of toolchain as determined from the first 56 component of the filename. E.g. arm-linux-gcc becomes arm 57 priority: Toolchain priority (0=highest, 20=lowest) 61 """Create a new toolchain object. 65 test: True to run the toolchain to test it [all …]
|
| H A D | bsettings.py | 3 # SPDX-License-Identifier: GPL-2.0+ 28 print 'To install tool chains, please use the --fetch-arch option' 76 print >>f, '''[toolchain] 78 # e.g. x86 = /opt/gcc-4.6.3-nolibc/x86_64-linux 80 [toolchain-prefix] 81 # name = path to prefix 82 # e.g. x86 = /opt/gcc-4.6.3-nolibc/x86_64-linux/bin/x86_64-linux- 84 [toolchain-alias] 86 # Indicates which toolchain should be used to build for that arch 92 [make-flags] [all …]
|
| H A D | README | 3 # SPDX-License-Identifier: GPL-2.0+ 8 Quick-start 14 cd /path/to/u-boot 16 buildman --fetch-arch arm 17 buildman -k rpi_2 19 # u-boot.bin is the output image 25 This tool handles building U-Boot to check that you have not broken it 28 to make full use of multi-processor machines. 40 where it left off. This should happen cleanly and without side-effects. 44 You may need to press Ctrl-C several times to quit it. Also it will print [all …]
|
| /rk3399_rockchip-uboot/ |
| H A D | .travis.yml | 2 # SPDX-License-Identifier: GPL-2.0+ 4 # build U-Boot on Travis CI - https://travis-ci.org/ 14 - cppcheck 15 - sloccount 16 - sparse 17 - bc 18 - build-essential 19 - libsdl1.2-dev 20 - python 21 - python-virtualenv [all …]
|
| H A D | make.sh | 5 # SPDX-License-Identifier: GPL-2.0 8 set -e 9 JOB=`sed -n "N;/processor/p" /proc/cpuinfo|wc -l` 10 SUPPORT_LIST=`ls configs/*[r,p][x,v,k][0-9][0-9]*_defconfig` 15 …MPILE_ARM32=../prebuilts/gcc/linux-x86/arm/gcc-linaro-6.3.1-2017.05-x86_64_arm-linux-gnueabihf/bin… 16 …MPILE_ARM64=../prebuilts/gcc/linux-x86/aarch64/gcc-linaro-6.3.1-2017.05-x86_64_aarch64-linux-gnu/b… 29 # Declare global toolchain path for CROSS_COMPILE, updated in select_toolchain() 30 TOOLCHAIN= 51 SCRIPT_CHECKCONFIG="${SRCTREE}/scripts/check-rkconfig.sh" 59 echo " ./make.sh [board|sub-command]" [all …]
|
| H A D | README | 2 # (C) Copyright 2000 - 2013 5 # SPDX-License-Identifier: GPL-2.0+ 11 This directory contains the source code for U-Boot, a boot loader for 17 The development of U-Boot is closely related to Linux: some parts of 39 scattered throughout the U-Boot source identifying the people or 43 actual U-Boot source tree; however, it can be created dynamically 53 U-Boot, you should send a message to the U-Boot mailing list at 54 <u-boot@lists.denx.de>. There is also an archive of previous traffic 55 on the mailing list - please search the archive before asking FAQ's. 56 Please see http://lists.denx.de/pipermail/u-boot and [all …]
|
| /rk3399_rockchip-uboot/doc/ |
| H A D | README.mpc83xxads | 2 ----------------------------------------- 4 0. Toolchain / Building 7 $ CROSS_COMPILE=powerpc-linux- 10 $ powerpc-linux-gcc -v 11 Reading specs from /usr/powerpc/lib/gcc/powerpc-linux/3.4.3/specs 12 Configured with: ../configure --prefix=/usr/powerpc 13 --exec-prefix=/usr/powerpc --target=powerpc-linux --enable-shared 14 --disable-nls --disable-multilib --enable-languages=c,c++,ada,f77,objc 18 $ powerpc-linux-as -v 19 GNU assembler version 2.15 (powerpc-linux) using BFD version 2.15 [all …]
|
| H A D | README.uniphier | 1 U-Boot for UniPhier SoC family 6 ---------------------- 9 You can download pre-built toolchains from: 15 ------------------ 20 $ make CROSS_COMPILE=<toolchain-prefix> DEVICE_TREE=<device-tree> 22 The recommended <toolchain-prefix> is `arm-linux-gnueabihf-` for 32bit SoCs, 23 `aarch64-linux-gnu-` for 64bit SoCs, but you may wish to change it to use your 26 The following tables show <defconfig> and <device-tree> for each board. 30 Board | <defconfig> | <device-tree> 31 ---------------|------------------------------|------------------------------ [all …]
|
| /rk3399_rockchip-uboot/tools/ |
| H A D | moveconfig.py | 5 # SPDX-License-Identifier: GPL-2.0+ 11 Since Kconfig was introduced to U-Boot, we have worked on moving 18 ----- 46 - Move 'CONFIG_... ' 49 - CONFIG_... is not defined in Kconfig. Do nothing. 53 - CONFIG_... is not defined in Kconfig (suspicious). Do nothing. 57 - You forgot to create an entry for the CONFIG before running 59 - The entry was hidden due to unmet 'depends on'. 63 - 'CONFIG_...' is the same as the define in Kconfig. Do nothing. 67 - Compiler is missing. Do nothing. [all …]
|