-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathlowrisc-toolchain-gcc-rv32imc.config
63 lines (49 loc) · 1.91 KB
/
lowrisc-toolchain-gcc-rv32imc.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
CT_CONFIG_VERSION="3"
CT_EXPERIMENTAL=y
CT_ARCH_RISCV=y
# CT_ARCH_ARCH controls the specific architecture that the toolchain's libraries
# are built with. It should specify the minimum RISC-V extensions that need to
# be implemented by any processor that this toolchain will compile programs for.
#
CT_ARCH_ARCH="rv32imc"
# CT_ARCH_ABI controls the specific ABI that the toolchain's libraries are built
# with. All programs built against this toolchain should follow exactly this
# ABI.
CT_ARCH_ABI="ilp32"
CT_TARGET_VENDOR=""
CT_TOOLCHAIN_BUGURL="[email protected]"
CT_DOWNLOAD_AGENT_CURL=y
CT_CC_GCC_STATIC_LIBSTDCXX=y
# CT_CC_GCC_LDBL_128 is not set
CT_CC_LANG_CXX=y
CT_GCC_V_9=y
CT_DEBUG_GDB=y
CT_GDB_V_11_1=y
# CT_GDB_CROSS_PYTHON is not set
CT_PATCH_ORDER="bundled,local"
CT_PATCH_BUNDLED_LOCAL=y
CT_PATCH_USE_LOCAL=y
# Disable progress bar for CI builds, it generates too much log output
# CT_LOG_PROGRESS_BAR is not set
# Installation prefix directory; the toolchain will end up in exactly
# this directory.
CT_PREFIX_DIR="/tools/riscv"
# Don't save tarballs for re-use (needs writable and pre-created
# CT_LOCAL_TARBALLS_DIR otherwise)
# CT_SAVE_TARBALLS is not set
# Don't chmod the CT_PREFIX_DIR read-only after the install.
# CT_PREFIX_DIR_RO is not set
# Binutils 2.35 (tag binutils-2_35, commit 2cb5c79dad3)
CT_BINUTILS_SRC_DEVEL=y
CT_BINUTILS_DEVEL_VCS_git=y
CT_BINUTILS_DEVEL_URL="https://github.com/bminor/binutils-gdb.git"
CT_BINUTILS_DEVEL_REVISION="2cb5c79dad39dd438fb0f7372ac04cf5aa2a7db7"
# GCC 10.2.0 (tag releases/gcc-10.2.0, commit ee5c3db6c5b)
CT_GCC_SRC_DEVEL=y
CT_GCC_DEVEL_VCS_git=y
CT_GCC_DEVEL_URL="https://gcc.gnu.org/git/gcc.git"
CT_GCC_DEVEL_REVISION="ee5c3db6c5b2c3332912fb4c9cfa2864569ebd9a"
# This is a baremetal target so don't use syscalls.
CT_LIBC_NEWLIB_DISABLE_SUPPLIED_SYSCALLS=y
# The build script appends a definition of CT_LOCAL_PATCH_DIR down here, that
# points to the repo's patch directory.